-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This is used to load TranscodingSteam's test extension, used in this package
- Loading branch information
1 parent
01737a6
commit d15ec72
Showing
2 changed files
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name = "CodecBzip2" | |
uuid = "523fee87-0ab8-5b00-afb7-3ecf72e48cfd" | ||
license = "MIT" | ||
authors = ["Kenta Sato <[email protected]>"] | ||
version = "0.8.1" | ||
version = "0.8.2" | ||
|
||
[deps] | ||
Bzip2_jll = "6e34b625-4abd-537c-b88f-471c36dfa7a0" | ||
|
@@ -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"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|