Skip to content

Commit

Permalink
update FlatBuffer dependency (#149)
Browse files Browse the repository at this point in the history
This fixes Feather on 1.7. I added 1.7 to the CI job as well, but I can
remove that part if it's not desired.
  • Loading branch information
simeonschaub authored Oct 26, 2021
1 parent ae23672 commit f545b93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
version:
- '1.0'
- '1' # automatically expands to the latest stable 1.x release of Julia
- '1.7-nightly'
- 'nightly'
os:
- ubuntu-latest
Expand Down Expand Up @@ -64,4 +65,4 @@ jobs:
- run: julia --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Feather"
uuid = "becb17da-46f6-5d3c-ad1b-1c5fe96bc73c"
version = "0.5.9"
version = "0.5.10"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand All @@ -13,7 +13,7 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
[compat]
CategoricalArrays = "0.8, 0.9, 0.10"
DataFrames = "0.19, 0.20, 0.21, 0.22, 1"
FlatBuffers = "0.5"
FlatBuffers = "0.5, 0.6"
Tables = "1"
julia = "1.0"

Expand Down

2 comments on commit f545b93

@quinnj
Copy link
Member

@quinnj quinnj commented on f545b93 Oct 26, 2021

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/47495

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

Please sign in to comment.