Skip to content

Commit

Permalink
Bump Chain.jl compat (#391)
Browse files Browse the repository at this point in the history
* update chain compat

* version bump

* allow chain 0.5 as well
  • Loading branch information
pdeffebach committed Mar 20, 2024
1 parent f1f7db7 commit bed917d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions NEWS.md
@@ -1,3 +1,6 @@
# DataFramesMeta v0.15.2 Release notes
* Bumped the Chain.jl compat entry in the Project.toml ([#382](https://github.com/JuliaData/DataFramesMeta.jl/pull/391))

# DataFramesMeta v0.15.1 Release notes

* Deleted an errant `print` statement introduced in [#382](https://github.com/JuliaData/DataFramesMeta.jl/pull/382) ([#389](https://github.com/JuliaData/DataFramesMeta.jl/pull/389))
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
@@ -1,6 +1,6 @@
name = "DataFramesMeta"
uuid = "1313f7d8-7da2-5740-9ea0-a2ca25f37964"
version = "0.15.1"
version = "0.15.2"

[deps]
Chain = "8be319e6-bccf-4806-a6f7-6fae938471bc"
Expand All @@ -11,7 +11,7 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
TableMetadataTools = "9ce81f87-eacc-4366-bf80-b621a3098ee2"

[compat]
Chain = "0.5"
Chain = "0.5, 0.6"
DataFrames = "1"
MacroTools = "0.5"
OrderedCollections = "1"
Expand Down

2 comments on commit bed917d

@pdeffebach
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/103291

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.15.2 -m "<description of version>" bed917dd2ec36b7ef50d472a5e0f0d30c4b5cb25
git push origin v0.15.2

Please sign in to comment.