Skip to content

Commit 2d45fda

Browse files
committed
bump version of simplicity-lang to 0.6.0
1 parent b36efa2 commit 2d45fda

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.6.0 - 2025-09-17
2+
3+
* Improve FFI API and fix soundness issues [#307](https://github.com/BlockstreamResearch/rust-simplicity/pull/288)
4+
* Decrease MSRV to 1.74.0, matching rust-bitcoin [#308](https://github.com/BlockstreamResearch/rust-simplicity/pull/308)
5+
* Use `ghost_cell` within `types::Context`, requiring users to construct programs within a single Rust lexical scope [#305](https://github.com/BlockstreamResearch/rust-simplicity/pull/305)
6+
17
# 0.5.0 - 2025-07-29
28

39
* Add generic `CaseTracker` in bit machine for debugging [#288](https://github.com/BlockstreamResearch/rust-simplicity/pull/288)

Cargo-recent.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
425425
name = "simpcli"
426426
version = "0.3.0"
427427
dependencies = [
428-
"simplicity-lang 0.5.0",
428+
"simplicity-lang 0.6.0",
429429
]
430430

431431
[[package]]
@@ -435,7 +435,7 @@ dependencies = [
435435
"base64 0.22.1",
436436
"libfuzzer-sys",
437437
"simplicity-lang 0.3.1",
438-
"simplicity-lang 0.5.0",
438+
"simplicity-lang 0.6.0",
439439
]
440440

441441
[[package]]
@@ -455,7 +455,7 @@ dependencies = [
455455

456456
[[package]]
457457
name = "simplicity-lang"
458-
version = "0.5.0"
458+
version = "0.6.0"
459459
dependencies = [
460460
"bitcoin",
461461
"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.5.0"
3+
version = "0.6.0"
44
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
55
license = "CC0-1.0"
66
homepage = "https://github.com/BlockstreamResearch/rust-simplicity/"

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

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

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

0 commit comments

Comments
 (0)