Skip to content

Commit

Permalink
Declare compatibility with BitIntegers 0.3 (#85)
Browse files Browse the repository at this point in the history
But continue to allow 0.2 as well. BitIntegers 0.3 made some changes to
promotion rules but those don't affect us (as is evidenced by tests
passing). They'll only possibly affect downstream users who forget to
`decode` the `Int24` signals.
  • Loading branch information
ararslan authored Oct 10, 2024
1 parent e11166e commit aa33e36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name = "EDF"
uuid = "ccffbfc1-f56e-50fb-a33b-53d1781b2825"
authors = ["Beacon Biosignals, Inc."]
version = "0.7.4"
version = "0.7.5"

[deps]
BitIntegers = "c3b6d118-76ef-56ca-8cc7-ebb389d030a1"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"

[compat]
BitIntegers = "0.2"
BitIntegers = "0.2, 0.3"
FilePathsBase = "0.9.13"
julia = "1.4"

Expand Down

2 comments on commit aa33e36

@ararslan
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/117029

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

Please sign in to comment.