Skip to content

Commit

Permalink
Add Random to test deps (#23)
Browse files Browse the repository at this point in the history
This is used to load TranscodingSteam's test extension, used in this package
  • Loading branch information
jakobnissen committed Jan 30, 2024
1 parent 914a8c0 commit aad0243
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 = "CodecXz"
uuid = "ba30903b-d9e8-5048-a5ec-d1f5b0d4b47b"
license = "MIT"
authors = ["Kenta Sato <bicycle1885@gmail.com>"]
version = "0.7.1"
version = "0.7.2"

[deps]
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
Expand All @@ -15,6 +15,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 CodecXz
using Random
using TranscodingStreams
using Test

Expand Down

2 comments on commit aad0243

@nhz2
Copy link
Member

@nhz2 nhz2 commented on aad0243 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/99885

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

Please sign in to comment.