From fd1410ebeb39fea6dc7bed5ebd55842466abdc69 Mon Sep 17 00:00:00 2001 From: Yeastplume Date: Mon, 12 Jun 2023 10:10:42 +0100 Subject: [PATCH] version change to 5.2.0-beta.1 for tag (#3753) --- Cargo.lock | 20 ++++++++++---------- api/Cargo.toml | 14 +++++++------- chain/Cargo.toml | 10 +++++----- config/Cargo.toml | 10 +++++----- core/Cargo.toml | 6 +++--- keychain/Cargo.toml | 4 ++-- p2p/Cargo.toml | 12 ++++++------ pool/Cargo.toml | 10 +++++----- servers/Cargo.toml | 18 +++++++++--------- store/Cargo.toml | 6 +++--- util/Cargo.toml | 2 +- 11 files changed, 56 insertions(+), 56 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9a2b8ee4..39b5bce73 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "grin_api" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" dependencies = [ "bytes 0.5.6", "easy-jsonrpc-mw", @@ -986,7 +986,7 @@ dependencies = [ [[package]] name = "grin_chain" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" dependencies = [ "bit-vec", "bitflags 1.3.2", @@ -1010,7 +1010,7 @@ dependencies = [ [[package]] name = "grin_config" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" dependencies = [ "dirs", "grin_core", @@ -1026,7 +1026,7 @@ dependencies = [ [[package]] name = "grin_core" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" dependencies = [ "blake2-rfc", "byteorder", @@ -1052,7 +1052,7 @@ dependencies = [ [[package]] name = "grin_keychain" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" dependencies = [ "blake2-rfc", "byteorder", @@ -1073,7 +1073,7 @@ dependencies = [ [[package]] name = "grin_p2p" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" dependencies = [ "bitflags 1.3.2", "bytes 0.5.6", @@ -1095,7 +1095,7 @@ dependencies = [ [[package]] name = "grin_pool" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" dependencies = [ "blake2-rfc", "chrono", @@ -1128,7 +1128,7 @@ dependencies = [ [[package]] name = "grin_servers" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" dependencies = [ "chrono", "fs2", @@ -1157,7 +1157,7 @@ dependencies = [ [[package]] name = "grin_store" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" dependencies = [ "byteorder", "chrono", @@ -1179,7 +1179,7 @@ dependencies = [ [[package]] name = "grin_util" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" dependencies = [ "backtrace", "base64 0.12.3", diff --git a/api/Cargo.toml b/api/Cargo.toml index 3dc4879ce..6b043b5e0 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_api" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" authors = ["Grin Developers "] description = "APIs for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -30,9 +30,9 @@ rustls = "0.17" url = "2.1" bytes = "0.5" -grin_core = { path = "../core", version = "5.2.0-alpha.2" } -grin_chain = { path = "../chain", version = "5.2.0-alpha.2" } -grin_p2p = { path = "../p2p", version = "5.2.0-alpha.2" } -grin_pool = { path = "../pool", version = "5.2.0-alpha.2" } -grin_store = { path = "../store", version = "5.2.0-alpha.2" } -grin_util = { path = "../util", version = "5.2.0-alpha.2" } +grin_core = { path = "../core", version = "5.2.0-beta.1" } +grin_chain = { path = "../chain", version = "5.2.0-beta.1" } +grin_p2p = { path = "../p2p", version = "5.2.0-beta.1" } +grin_pool = { path = "../pool", version = "5.2.0-beta.1" } +grin_store = { path = "../store", version = "5.2.0-beta.1" } +grin_util = { path = "../util", version = "5.2.0-beta.1" } diff --git a/chain/Cargo.toml b/chain/Cargo.toml index 03664d29e..f10d1f935 100644 --- a/chain/Cargo.toml +++ b/chain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_chain" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" authors = ["Grin Developers "] description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -23,10 +23,10 @@ chrono = "0.4.11" lru-cache = "0.1" lazy_static = "1" -grin_core = { path = "../core", version = "5.2.0-alpha.2" } -grin_keychain = { path = "../keychain", version = "5.2.0-alpha.2" } -grin_store = { path = "../store", version = "5.2.0-alpha.2" } -grin_util = { path = "../util", version = "5.2.0-alpha.2" } +grin_core = { path = "../core", version = "5.2.0-beta.1" } +grin_keychain = { path = "../keychain", version = "5.2.0-beta.1" } +grin_store = { path = "../store", version = "5.2.0-beta.1" } +grin_util = { path = "../util", version = "5.2.0-beta.1" } [dev-dependencies] env_logger = "0.7" diff --git a/config/Cargo.toml b/config/Cargo.toml index b07ab997f..94efbe165 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_config" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" authors = ["Grin Developers "] description = "Configuration for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -16,10 +16,10 @@ serde_derive = "1" toml = "0.5" dirs = "2.0" -grin_core = { path = "../core", version = "5.2.0-alpha.2" } -grin_servers = { path = "../servers", version = "5.2.0-alpha.2" } -grin_p2p = { path = "../p2p", version = "5.2.0-alpha.2" } -grin_util = { path = "../util", version = "5.2.0-alpha.2" } +grin_core = { path = "../core", version = "5.2.0-beta.1" } +grin_servers = { path = "../servers", version = "5.2.0-beta.1" } +grin_p2p = { path = "../p2p", version = "5.2.0-beta.1" } +grin_util = { path = "../util", version = "5.2.0-beta.1" } [dev-dependencies] pretty_assertions = "0.6.1" diff --git a/core/Cargo.toml b/core/Cargo.toml index 12b90ad9c..fef3699a9 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_core" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" authors = ["Grin Developers "] description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -28,8 +28,8 @@ chrono = { version = "0.4.11", features = ["serde"] } zeroize = { version = "1.1", features =["zeroize_derive"] } bytes = "0.5" -keychain = { package = "grin_keychain", path = "../keychain", version = "5.2.0-alpha.2" } -util = { package = "grin_util", path = "../util", version = "5.2.0-alpha.2" } +keychain = { package = "grin_keychain", path = "../keychain", version = "5.2.0-beta.1" } +util = { package = "grin_util", path = "../util", version = "5.2.0-beta.1" } [dev-dependencies] serde_json = "1" diff --git a/keychain/Cargo.toml b/keychain/Cargo.toml index 5a75cfe94..2003f159c 100644 --- a/keychain/Cargo.toml +++ b/keychain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_keychain" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" authors = ["Grin Developers "] description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -26,4 +26,4 @@ ripemd160 = "0.9" sha2 = "0.9" pbkdf2 = "0.8" -grin_util = { path = "../util", version = "5.2.0-alpha.2" } +grin_util = { path = "../util", version = "5.2.0-beta.1" } diff --git a/p2p/Cargo.toml b/p2p/Cargo.toml index 782b8b331..c8aad75c2 100644 --- a/p2p/Cargo.toml +++ b/p2p/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_p2p" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" authors = ["Grin Developers "] description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -22,10 +22,10 @@ log = "0.4" chrono = { version = "0.4.11", features = ["serde"] } bytes = "0.5" -grin_core = { path = "../core", version = "5.2.0-alpha.2" } -grin_store = { path = "../store", version = "5.2.0-alpha.2" } -grin_util = { path = "../util", version = "5.2.0-alpha.2" } -grin_chain = { path = "../chain", version = "5.2.0-alpha.2" } +grin_core = { path = "../core", version = "5.2.0-beta.1" } +grin_store = { path = "../store", version = "5.2.0-beta.1" } +grin_util = { path = "../util", version = "5.2.0-beta.1" } +grin_chain = { path = "../chain", version = "5.2.0-beta.1" } [dev-dependencies] -grin_pool = { path = "../pool", version = "5.2.0-alpha.2" } +grin_pool = { path = "../pool", version = "5.2.0-beta.1" } diff --git a/pool/Cargo.toml b/pool/Cargo.toml index 9ca663993..29b439d1d 100644 --- a/pool/Cargo.toml +++ b/pool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_pool" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" authors = ["Grin Developers "] description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -18,9 +18,9 @@ thiserror = "1" log = "0.4" chrono = "0.4.11" -grin_core = { path = "../core", version = "5.2.0-alpha.2" } -grin_keychain = { path = "../keychain", version = "5.2.0-alpha.2" } -grin_util = { path = "../util", version = "5.2.0-alpha.2" } +grin_core = { path = "../core", version = "5.2.0-beta.1" } +grin_keychain = { path = "../keychain", version = "5.2.0-beta.1" } +grin_util = { path = "../util", version = "5.2.0-beta.1" } [dev-dependencies] -grin_chain = { path = "../chain", version = "5.2.0-alpha.2" } +grin_chain = { path = "../chain", version = "5.2.0-beta.1" } diff --git a/servers/Cargo.toml b/servers/Cargo.toml index df18190c5..9dbea4025 100644 --- a/servers/Cargo.toml +++ b/servers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_servers" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" authors = ["Grin Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -26,11 +26,11 @@ tokio = {version = "0.2", features = ["full"] } tokio-util = { version = "0.2", features = ["codec"] } walkdir = "2.3.1" -grin_api = { path = "../api", version = "5.2.0-alpha.2" } -grin_chain = { path = "../chain", version = "5.2.0-alpha.2" } -grin_core = { path = "../core", version = "5.2.0-alpha.2" } -grin_keychain = { path = "../keychain", version = "5.2.0-alpha.2" } -grin_p2p = { path = "../p2p", version = "5.2.0-alpha.2" } -grin_pool = { path = "../pool", version = "5.2.0-alpha.2" } -grin_store = { path = "../store", version = "5.2.0-alpha.2" } -grin_util = { path = "../util", version = "5.2.0-alpha.2" } +grin_api = { path = "../api", version = "5.2.0-beta.1" } +grin_chain = { path = "../chain", version = "5.2.0-beta.1" } +grin_core = { path = "../core", version = "5.2.0-beta.1" } +grin_keychain = { path = "../keychain", version = "5.2.0-beta.1" } +grin_p2p = { path = "../p2p", version = "5.2.0-beta.1" } +grin_pool = { path = "../pool", version = "5.2.0-beta.1" } +grin_store = { path = "../store", version = "5.2.0-beta.1" } +grin_util = { path = "../util", version = "5.2.0-beta.1" } diff --git a/store/Cargo.toml b/store/Cargo.toml index 588c3689a..da38677af 100644 --- a/store/Cargo.toml +++ b/store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_store" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" authors = ["Grin Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0" @@ -21,8 +21,8 @@ serde_derive = "1" thiserror = "1" log = "0.4" -grin_core = { path = "../core", version = "5.2.0-alpha.2" } -grin_util = { path = "../util", version = "5.2.0-alpha.2" } +grin_core = { path = "../core", version = "5.2.0-beta.1" } +grin_util = { path = "../util", version = "5.2.0-beta.1" } [dev-dependencies] chrono = "0.4.11" diff --git a/util/Cargo.toml b/util/Cargo.toml index 88abf2934..bf41d2fe1 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grin_util" -version = "5.2.0-alpha.2" +version = "5.2.0-beta.1" authors = ["Grin Developers "] description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format." license = "Apache-2.0"