Skip to content

Commit 38a8ec1

Browse files
committed
chore: Bump version
1 parent 5c3ff26 commit 38a8ec1

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Cargo-recent.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ name = "simpcli"
419419
version = "0.3.0"
420420
dependencies = [
421421
"base64 0.21.7",
422-
"simplicity-lang 0.4.0",
422+
"simplicity-lang 0.5.0",
423423
]
424424

425425
[[package]]
@@ -429,7 +429,7 @@ dependencies = [
429429
"base64 0.22.1",
430430
"libfuzzer-sys",
431431
"simplicity-lang 0.3.1",
432-
"simplicity-lang 0.4.0",
432+
"simplicity-lang 0.5.0",
433433
]
434434

435435
[[package]]
@@ -449,7 +449,7 @@ dependencies = [
449449

450450
[[package]]
451451
name = "simplicity-lang"
452-
version = "0.4.0"
452+
version = "0.5.0"
453453
dependencies = [
454454
"bitcoin",
455455
"bitcoin_hashes",
@@ -460,7 +460,7 @@ dependencies = [
460460
"miniscript",
461461
"santiago",
462462
"serde",
463-
"simplicity-sys 0.4.0",
463+
"simplicity-sys 0.5.0",
464464
]
465465

466466
[[package]]
@@ -475,7 +475,7 @@ dependencies = [
475475

476476
[[package]]
477477
name = "simplicity-sys"
478-
version = "0.4.0"
478+
version = "0.5.0"
479479
dependencies = [
480480
"bitcoin_hashes",
481481
"cc",

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simplicity-lang"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Andrew Poelstra <[email protected]>"]
55
license = "CC0-1.0"
66
homepage = "https://github.com/BlockstreamResearch/rust-simplicity/"
@@ -28,14 +28,14 @@ elements = { version = "0.25.0", optional = true, default-features = false }
2828
hashes = { package = "bitcoin_hashes", version = "0.14" }
2929
hex = { package = "hex-conservative", version = "0.1.1" }
3030
santiago = "1.3"
31-
simplicity-sys = { version = "0.4.0", path = "./simplicity-sys" }
31+
simplicity-sys = { version = "0.5.0", path = "./simplicity-sys" }
3232
serde = { version = "1.0.103", features = ["derive"], optional = true }
3333

3434
[target.wasm32-unknown-unknown.dependencies]
3535
getrandom = { version = "0.2", features = ["js"] }
3636

3737
[dev-dependencies]
38-
simplicity-sys = { version = "0.4.0", path = "./simplicity-sys", features = [
38+
simplicity-sys = { version = "0.5.0", path = "./simplicity-sys", features = [
3939
"test-utils",
4040
] }
4141

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ path = "fuzz_lib/lib.rs"
1616
libfuzzer-sys = "0.4"
1717
# We shouldn't need an explicit version on the next line, but Andrew's tools
1818
# choke on it otherwise. See https://github.com/nix-community/crate2nix/issues/373
19-
simplicity-lang = { path = "..", features = ["test-utils"], version = "0.4.0" }
19+
simplicity-lang = { path = "..", features = ["test-utils"], version = "0.5.0" }
2020
old_simplicity = { package = "simplicity-lang", version = "0.3.1", default-features = false }
2121

2222
[dev-dependencies]

fuzz/generate-files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ path = "fuzz_lib/lib.rs"
2727
libfuzzer-sys = "0.4"
2828
# We shouldn't need an explicit version on the next line, but Andrew's tools
2929
# choke on it otherwise. See https://github.com/nix-community/crate2nix/issues/373
30-
simplicity-lang = { path = "..", features = ["test-utils"], version = "0.4.0" }
30+
simplicity-lang = { path = "..", features = ["test-utils"], version = "0.5.0" }
3131
old_simplicity = { package = "simplicity-lang", version = "0.3.1", default-features = false }
3232
3333
[dev-dependencies]

simpcli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2018"
88
[dependencies]
99
base64 = "0.21"
1010
# todo add lexopt for command line parsing
11-
simplicity-lang = { version = "0.4", path = "..", features = [ "serde", "elements" ] }
11+
simplicity-lang = { version = "0.5", path = "..", features = [ "serde", "elements" ] }
1212

1313
[[bin]]
1414
name = "simpcli"

simplicity-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simplicity-sys"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
license = "CC0-1.0"
55
homepage = "https://github.com/BlockstreamResearch/rust-simplicity/"
66
repository = "https://github.com/BlockstreamResearch/rust-simplicity/"

0 commit comments

Comments
 (0)