Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Jan 24, 2023
1 parent ed8c139 commit cc235a3
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "client_side_validation"
version = "0.9.0-rc.1"
version = "0.9.0"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Client-side validation foundation library"
Expand All @@ -18,9 +18,9 @@ name = "client_side_validation"
path = "src/lib.rs"

[dependencies]
strict_encoding = { version = "0.9.0-rc.1", path = "./strict_encoding" }
commit_verify = { version = "0.9.0-rc.1", path = "./commit_verify" }
single_use_seals = { version = "0.9.0-rc.1", path = "./single_use_seals" }
strict_encoding = { version = "0.9.0", path = "./strict_encoding" }
commit_verify = { version = "0.9.0", path = "./commit_verify" }
single_use_seals = { version = "0.9.0", path = "./single_use_seals" }

[features]
default = []
Expand Down
6 changes: 3 additions & 3 deletions commit_verify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "commit_verify"
version = "0.9.0-rc.1"
version = "0.9.0"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Commit-verify API for client-side validation"
Expand All @@ -19,11 +19,11 @@ path = "src/lib.rs"
[dependencies]
amplify = { version = "3.13.0", features = ["hex"] }
bitcoin_hashes = "0.11.0"
strict_encoding = { version = "0.9.0-rc.1", path = "../strict_encoding" }
strict_encoding = { version = "0.9.0", path = "../strict_encoding" }
rand = { version = "0.8.5", optional = true }
serde_crate = { version = "1.0", package = "serde", optional = true }
serde_with = { version = "1.14.0", optional = true }
lnpbp_secp256k1zkp = { version = "0.9.0-alpha.1", optional = true }
lnpbp_secp256k1zkp = { version = "0.9.0", optional = true }

[dev-dependencies]
rand = "0.8.5"
Expand Down
2 changes: 1 addition & 1 deletion single_use_seals/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "single_use_seals"
version = "0.9.0-rc.1"
version = "0.9.0"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Single-use-seals foundation API. For bitcoin-specific implementation check bp-seals"
Expand Down
4 changes: 2 additions & 2 deletions strict_encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "strict_encoding"
version = "0.9.0-rc.2"
version = "0.9.0"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Strict encoding: deterministic binary serialization for networking & client-side validation"
Expand All @@ -24,7 +24,7 @@ strict_encoding_derive = { version = "0.9.0", path = "./derive", optional = true
bitcoin_hashes = "0.11.0" # We need this separately since bitcoin is an optional dependency
bitcoin = { version = "0.29.2", optional = true }
miniscript = { version = "9.0.0", optional = true }
lnpbp_secp256k1zkp = { version = "0.9.0-rc.1", optional = true }
lnpbp_secp256k1zkp = { version = "0.9.0", optional = true }
chrono = { version = "0.4", optional = true }
half = { version = "2.1", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
Expand Down
4 changes: 2 additions & 2 deletions strict_encoding/test_helpers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "strict_encoding_test"
version = "0.9.0-rc.1"
version = "0.9.0"
license = "Apache-2.0"
authors = ["Dr. Maxim Orlovsky <[email protected]>"]
description = "Helper functions for testing strict encodings"
Expand All @@ -16,4 +16,4 @@ rust-version = "1.59.0"

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

0 comments on commit cc235a3

Please sign in to comment.