From 183ae6200bff156606a2696a0fb2f33cdded444b Mon Sep 17 00:00:00 2001 From: Rob N Date: Sat, 25 May 2024 11:17:42 -1000 Subject: [PATCH] crate: bump version --- Cargo.lock | 2 +- protocol/Cargo.toml | 2 +- proxy/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2da0637..1170330 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -62,7 +62,7 @@ checksum = "d965446196e3b7decd44aa7ee49e31d630118f90ef12f97900f262eb915c951d" [[package]] name = "bip324" -version = "0.2.0" +version = "0.3.0" dependencies = [ "bitcoin", "hex-conservative 0.2.0", diff --git a/protocol/Cargo.toml b/protocol/Cargo.toml index cbdcaac..0b5637c 100644 --- a/protocol/Cargo.toml +++ b/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bip324" -version = "0.2.0" +version = "0.3.0" edition = "2021" license-file = "LICENSE" description = "Encrypted messaging over the Bitcoin P2P Protocol as specified by BIP 324" diff --git a/proxy/Cargo.toml b/proxy/Cargo.toml index 4b3846b..045a90b 100644 --- a/proxy/Cargo.toml +++ b/proxy/Cargo.toml @@ -13,4 +13,4 @@ bitcoin = { version = "0.32.0" } tokio = { version = "1.37.0", features = ["full"] } bytes = "1.6.0" hex = { package = "hex-conservative", version = "0.2.0" } -bip324 = { path = "../protocol", version = "0.2.0" } +bip324 = { path = "../protocol" }