Skip to content

Commit cc235a3

Browse files
committed
Release v0.9.0
1 parent ed8c139 commit cc235a3

File tree

6 files changed

+19
-19
lines changed

6 files changed

+19
-19
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "client_side_validation"
3-
version = "0.9.0-rc.1"
3+
version = "0.9.0"
44
license = "Apache-2.0"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
66
description = "Client-side validation foundation library"
@@ -18,9 +18,9 @@ name = "client_side_validation"
1818
path = "src/lib.rs"
1919

2020
[dependencies]
21-
strict_encoding = { version = "0.9.0-rc.1", path = "./strict_encoding" }
22-
commit_verify = { version = "0.9.0-rc.1", path = "./commit_verify" }
23-
single_use_seals = { version = "0.9.0-rc.1", path = "./single_use_seals" }
21+
strict_encoding = { version = "0.9.0", path = "./strict_encoding" }
22+
commit_verify = { version = "0.9.0", path = "./commit_verify" }
23+
single_use_seals = { version = "0.9.0", path = "./single_use_seals" }
2424

2525
[features]
2626
default = []

commit_verify/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "commit_verify"
3-
version = "0.9.0-rc.1"
3+
version = "0.9.0"
44
license = "Apache-2.0"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
66
description = "Commit-verify API for client-side validation"
@@ -19,11 +19,11 @@ path = "src/lib.rs"
1919
[dependencies]
2020
amplify = { version = "3.13.0", features = ["hex"] }
2121
bitcoin_hashes = "0.11.0"
22-
strict_encoding = { version = "0.9.0-rc.1", path = "../strict_encoding" }
22+
strict_encoding = { version = "0.9.0", path = "../strict_encoding" }
2323
rand = { version = "0.8.5", optional = true }
2424
serde_crate = { version = "1.0", package = "serde", optional = true }
2525
serde_with = { version = "1.14.0", optional = true }
26-
lnpbp_secp256k1zkp = { version = "0.9.0-alpha.1", optional = true }
26+
lnpbp_secp256k1zkp = { version = "0.9.0", optional = true }
2727

2828
[dev-dependencies]
2929
rand = "0.8.5"

single_use_seals/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "single_use_seals"
3-
version = "0.9.0-rc.1"
3+
version = "0.9.0"
44
license = "Apache-2.0"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
66
description = "Single-use-seals foundation API. For bitcoin-specific implementation check bp-seals"

strict_encoding/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "strict_encoding"
3-
version = "0.9.0-rc.2"
3+
version = "0.9.0"
44
license = "Apache-2.0"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
66
description = "Strict encoding: deterministic binary serialization for networking & client-side validation"
@@ -24,7 +24,7 @@ strict_encoding_derive = { version = "0.9.0", path = "./derive", optional = true
2424
bitcoin_hashes = "0.11.0" # We need this separately since bitcoin is an optional dependency
2525
bitcoin = { version = "0.29.2", optional = true }
2626
miniscript = { version = "9.0.0", optional = true }
27-
lnpbp_secp256k1zkp = { version = "0.9.0-rc.1", optional = true }
27+
lnpbp_secp256k1zkp = { version = "0.9.0", optional = true }
2828
chrono = { version = "0.4", optional = true }
2929
half = { version = "2.1", optional = true }
3030
serde = { version = "1.0", features = ["derive"], optional = true }

strict_encoding/test_helpers/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "strict_encoding_test"
3-
version = "0.9.0-rc.1"
3+
version = "0.9.0"
44
license = "Apache-2.0"
55
authors = ["Dr. Maxim Orlovsky <orlovsky@lnp-bp.org>"]
66
description = "Helper functions for testing strict encodings"
@@ -16,4 +16,4 @@ rust-version = "1.59.0"
1616

1717
[dependencies]
1818
amplify = "3.13.0"
19-
strict_encoding = { version = "0.9.0-rc.1", path = ".." }
19+
strict_encoding = { version = "0.9.0", path = ".." }

0 commit comments

Comments
 (0)