Skip to content

Commit

Permalink
Bump version and release minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rustaceanrob committed Apr 18, 2024
1 parent fae064c commit 3584a3a
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 14 deletions.
43 changes: 35 additions & 8 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 protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bip324"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license-file = "LICENSE"
description = "Encrypted messaging over the Bitcoin P2P Protocol as specified by BIP 324"
Expand All @@ -13,9 +13,9 @@ default = ["std"]
std = ["secp256k1/std", "rand/std", "rand/std_rng"]

[dependencies]
secp256k1 = { version="0.28.2", default-features = false}
rand = { version = "0.8.4", default-features = false }
bitcoin_hashes = { version = "0.13.0", default-features = false }
secp256k1 = { version="0.29.0", default-features = false}
rand = { version = "0.8.0", default-features = false }
bitcoin_hashes = { version = "0.14.0", default-features = false }

[dev-dependencies]
hex = { package = "hex-conservative", version = "0.2.0" }
Expand Down
4 changes: 2 additions & 2 deletions proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bip324-proxy"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license-file = "LICENSE"
description = "BIP324 proxy enabling v1-only clients to use the v2 Bitcoin P2P Protocol"
Expand All @@ -12,4 +12,4 @@ rust-version = "1.56.1"
bitcoin = "0.31.1"
tokio = { version = "1.36.0", features = ["full"] }
hex = { package = "hex-conservative", version = "0.2.0" }
bip324 = { path = "../protocol", version = "0.1.0" }
bip324 = { path = "../protocol", version = "0.2.0" }

0 comments on commit 3584a3a

Please sign in to comment.