Skip to content

Commit

Permalink
release v0.10.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Jul 12, 2023
1 parent e07dfbd commit 51abe63
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 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
Expand Up @@ -28,7 +28,7 @@ single_use_seals = "0.10.0"

[package]
name = "bp-core"
version = "0.10.4"
version = "0.10.5"
description = "Bitcoin protocol core library (BP Core Lib)"
keywords = ["lnp-bp", "smart-contracts", "bitcoin", "blockchain"]
categories = ["cryptography"]
Expand All @@ -55,9 +55,9 @@ strict_encoding = { workspace = true }
strict_types = { version = "1.5.0", optional = true }
commit_verify = { workspace = true }
single_use_seals = { workspace = true }
bp-primitives = { version = "0.10.4", path = "./primitives" }
bp-dbc = { version = "0.10.4", path = "./dbc" }
bp-seals = { version = "0.10.4", path = "./seals" }
bp-primitives = { version = "0.10.5", path = "./primitives" }
bp-dbc = { version = "0.10.5", path = "./dbc" }
bp-seals = { version = "0.10.5", path = "./seals" }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }

[features]
Expand Down
4 changes: 2 additions & 2 deletions dbc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp-dbc"
version = "0.10.4"
version = "0.10.5"
description = "Deterministic bitcoin commitments library"
keywords = ["lnp-bp", "bitcoin", "blockchain", "smart-contracts", "single-use-seals"]
categories = ["cryptography", "encoding"]
Expand All @@ -21,7 +21,7 @@ amplify = { workspace = true }
baid58 = "0.3.0"
strict_encoding = { workspace = true }
commit_verify = { workspace = true, features = ["rand"] }
bp-primitives = { version = "0.10.2", path = "../primitives" }
bp-primitives = { version = "0.10.5", path = "../primitives" }
secp256k1 = { version = "0.27.0", features = ["global-context", "rand-std"] }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }

Expand Down
4 changes: 2 additions & 2 deletions primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp-primitives"
version = "0.10.4"
version = "0.10.5"
description = "Bitcoin protocol primitives library"
keywords = ["lnp-bp", "smart-contracts", "bitcoin", "blockchain"]
categories = ["cryptography"]
Expand All @@ -19,7 +19,7 @@ name = "bc"
amplify = { workspace = true }
secp256k1 = { version = "0.27.0", features = ["global-context"] }
strict_encoding = { workspace = true }
strict_types = { version = "1.2.0", optional = true }
strict_types = { version = "1.5.0", optional = true }
commit_verify = { workspace = true }
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }

Expand Down
6 changes: 3 additions & 3 deletions seals/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bp-seals"
version = "0.10.4"
version = "0.10.5"
description = "Bitcoin protocol single-use-seals library"
keywords = ["lnp-bp", "bitcoin", "blockchain", "smart-contracts", "single-use-seals"]
categories = ["cryptography", "encoding"]
Expand All @@ -22,8 +22,8 @@ single_use_seals = { workspace = true }
commit_verify = { workspace = true }
strict_encoding = { workspace = true }
baid58 = "0.3.0"
bp-primitives = { version = "0.10.2", path = "../primitives" }
bp-dbc = { version = "0.10.2", path = "../dbc" }
bp-primitives = { version = "0.10.5", path = "../primitives" }
bp-dbc = { version = "0.10.5", path = "../dbc" }
rand = "0.8.5"
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true }

Expand Down

0 comments on commit 51abe63

Please sign in to comment.