Skip to content

Commit 117b90c

Browse files
committed
Bump simplicity-lang version to 0.7.1
1 parent 7a77539 commit 117b90c

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

Cargo-recent.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
461461
name = "simpcli"
462462
version = "0.3.0"
463463
dependencies = [
464-
"simplicity-lang 0.7.0",
464+
"simplicity-lang 0.7.1",
465465
]
466466

467467
[[package]]
@@ -471,7 +471,7 @@ dependencies = [
471471
"base64 0.22.1",
472472
"libfuzzer-sys",
473473
"simplicity-lang 0.3.1",
474-
"simplicity-lang 0.7.0",
474+
"simplicity-lang 0.7.1",
475475
]
476476

477477
[[package]]
@@ -491,7 +491,7 @@ dependencies = [
491491

492492
[[package]]
493493
name = "simplicity-lang"
494-
version = "0.7.0"
494+
version = "0.7.1"
495495
dependencies = [
496496
"bitcoin",
497497
"bitcoin_hashes",

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-lang"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Andrew Poelstra <[email protected]>"]
55
license = "CC0-1.0"
66
homepage = "https://github.com/BlockstreamResearch/rust-simplicity/"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ To use rust-simplicity, this to your Cargo.toml:
5050

5151
```toml
5252
[dependencies]
53-
simplicity-lang = "0.6"
53+
simplicity-lang = "0.7"
5454
```
5555

5656
## Quick Start

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.7.0" }
19+
simplicity-lang = { path = "..", features = ["test-utils"], version = "0.7.1" }
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.6.0" }
30+
simplicity-lang = { path = "..", features = ["test-utils"], version = "0.7.1" }
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
@@ -7,7 +7,7 @@ edition = "2018"
77

88
[dependencies]
99
# todo add lexopt for command line parsing
10-
simplicity-lang = { version = "0.7.0", path = "..", features = [ "base64", "serde", "elements" ] }
10+
simplicity-lang = { version = "0.7.1", path = "..", features = [ "base64", "serde", "elements" ] }
1111

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

0 commit comments

Comments
 (0)