Skip to content

Commit

Permalink
Merge pull request #25 from jakobnissen/master
Browse files Browse the repository at this point in the history
Add Random to test deps
  • Loading branch information
nhz2 committed Jan 30, 2024
2 parents 01737a6 + d15ec72 commit af584ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "CodecBzip2"
uuid = "523fee87-0ab8-5b00-afb7-3ecf72e48cfd"
license = "MIT"
authors = ["Kenta Sato <bicycle1885@gmail.com>"]
version = "0.8.1"
version = "0.8.2"

[deps]
Bzip2_jll = "6e34b625-4abd-537c-b88f-471c36dfa7a0"
Expand All @@ -16,6 +16,7 @@ julia = "1.3"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"

[targets]
test = ["Test"]
test = ["Test", "Random"]
1 change: 1 addition & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using CodecBzip2
using Random
if VERSION > v"0.7-"
using Test
else
Expand Down

2 comments on commit af584ae

@nhz2
Copy link
Member Author

@nhz2 nhz2 commented on af584ae Jan 30, 2024

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/99884

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.2 -m "<description of version>" af584ae184f001b688fda09ba470318cd428e492
git push origin v0.8.2

Please sign in to comment.