Skip to content

Commit

Permalink
use TestsForCodecPackages.jl (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhz2 authored Aug 11, 2024
1 parent 3909cdb commit dd510c6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
9 changes: 1 addition & 8 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "CodecLz4"
uuid = "5ba52731-8f18-5e0d-9241-30f10d1ec561"
license = "MIT"
author = "Invenia Technical Computing"
version = "0.4.4"
version = "0.4.5"

[deps]
Lz4_jll = "5ced341a-0733-55b8-9ab6-a4889d929147"
Expand All @@ -12,10 +12,3 @@ TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
Lz4_jll = "1.9"
TranscodingStreams = "0.9, 0.10, 0.11"
julia = "1.3"

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

[targets]
test = ["Test", "Random"]
5 changes: 5 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[deps]
CodecLz4 = "5ba52731-8f18-5e0d-9241-30f10d1ec561"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TestsForCodecPackages = "c2e61002-3542-480d-8b3c-5f05cc4f8554"
TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
4 changes: 2 additions & 2 deletions test/frame_compression.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using TranscodingStreams: TranscodingStream, Error, Memory,
test_roundtrip_fileio, test_roundtrip_transcode
using TranscodingStreams: TranscodingStream, Error, Memory
using TestsForCodecPackages: test_roundtrip_fileio, test_roundtrip_transcode
using TranscodingStreams

text = b"""
Expand Down
1 change: 0 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using CodecLz4
using Random
using Test

@testset "CodecLz4.jl" begin
Expand Down

2 comments on commit dd510c6

@nhz2
Copy link
Member Author

@nhz2 nhz2 commented on dd510c6 Aug 11, 2024

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

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

Please sign in to comment.