Skip to content

Commit

Permalink
Bump dependency compats (#183)
Browse files Browse the repository at this point in the history
* Bump CodecZlib compat

This is causing v0.3 of Parquet to be installed on my machine.

* bump more compat

* Bump patch version
  • Loading branch information
asinghvi17 authored Aug 30, 2024
1 parent 116f6d7 commit f406366
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "626c502c-15b0-58ad-a749-f091afb673ae"
keywords = ["parquet", "julia", "columnar-storage"]
license = "MIT"
desc = "Julia implementation of parquet columnar file format reader and writer"
version = "0.8.4"
version = "0.8.5"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand All @@ -22,8 +22,8 @@ Thrift = "8d9c9c80-f77e-5080-9541-c6f69d204e22"

[compat]
CategoricalArrays = "0.6,0.7,0.8,0.9,0.10"
CodecZlib = "0.5,0.6,0.7"
CodecZstd = "0.6,0.7"
CodecZlib = "0.5,0.6,0.7,0.8"
CodecZstd = "0.6,0.7,0.8"
DataAPI = "1"
Decimals = "0.4"
LittleEndianBase128 = "0.3"
Expand Down

2 comments on commit f406366

@asinghvi17
Copy link
Member 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/114180

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.8.5 -m "<description of version>" f40636620942d6c957a5661c919fe6461825aeed
git push origin v0.8.5

Please sign in to comment.