Bump version to v5.4.0

This commit is contained in:
David Burkett
2026-03-09 10:44:03 -04:00
parent 41e50cda8f
commit 2ec7b4d5cd
12 changed files with 69 additions and 69 deletions
Generated
+11 -11
View File
@@ -932,7 +932,7 @@ dependencies = [
[[package]]
name = "grin"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"blake2-rfc",
"built",
@@ -962,7 +962,7 @@ dependencies = [
[[package]]
name = "grin_api"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"async-stream",
"bytes 1.7.1",
@@ -995,7 +995,7 @@ dependencies = [
[[package]]
name = "grin_chain"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"bit-vec",
"bitflags 1.3.2",
@@ -1019,7 +1019,7 @@ dependencies = [
[[package]]
name = "grin_config"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"dirs",
"grin_core",
@@ -1035,7 +1035,7 @@ dependencies = [
[[package]]
name = "grin_core"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"blake2-rfc",
"byteorder",
@@ -1061,7 +1061,7 @@ dependencies = [
[[package]]
name = "grin_keychain"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"blake2-rfc",
"byteorder",
@@ -1082,7 +1082,7 @@ dependencies = [
[[package]]
name = "grin_p2p"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"bitflags 1.3.2",
"bytes 0.5.6",
@@ -1104,7 +1104,7 @@ dependencies = [
[[package]]
name = "grin_pool"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"blake2-rfc",
"chrono",
@@ -1136,7 +1136,7 @@ dependencies = [
[[package]]
name = "grin_servers"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"async-stream",
"chrono",
@@ -1167,7 +1167,7 @@ dependencies = [
[[package]]
name = "grin_store"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"byteorder",
"chrono",
@@ -1189,7 +1189,7 @@ dependencies = [
[[package]]
name = "grin_util"
version = "5.4.0-alpha.0"
version = "5.4.0"
dependencies = [
"anyhow",
"backtrace",
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "grin"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
license = "Apache-2.0"
@@ -34,15 +34,15 @@ serde_json = "1"
log = "0.4"
term = "0.6"
grin_api = { path = "./api", version = "5.4.0-alpha.0" }
grin_config = { path = "./config", version = "5.4.0-alpha.0" }
grin_chain = { path = "./chain", version = "5.4.0-alpha.0" }
grin_core = { path = "./core", version = "5.4.0-alpha.0" }
grin_keychain = { path = "./keychain", version = "5.4.0-alpha.0" }
grin_p2p = { path = "./p2p", version = "5.4.0-alpha.0" }
grin_servers = { path = "./servers", version = "5.4.0-alpha.0" }
grin_util = { path = "./util", version = "5.4.0-alpha.0" }
grin_store = { path = "./store", version = "5.4.0-alpha.0" }
grin_api = { path = "./api", version = "5.4.0" }
grin_config = { path = "./config", version = "5.4.0" }
grin_chain = { path = "./chain", version = "5.4.0" }
grin_core = { path = "./core", version = "5.4.0" }
grin_keychain = { path = "./keychain", version = "5.4.0" }
grin_p2p = { path = "./p2p", version = "5.4.0" }
grin_servers = { path = "./servers", version = "5.4.0" }
grin_util = { path = "./util", version = "5.4.0" }
grin_store = { path = "./store", version = "5.4.0" }
[dependencies.cursive]
version = "0.21"
@@ -53,5 +53,5 @@ features = ["pancurses-backend"]
built = { version = "0.8.0", features = ["git2"]}
[dev-dependencies]
grin_chain = { path = "./chain", version = "5.4.0-alpha.0" }
grin_store = { path = "./store", version = "5.4.0-alpha.0" }
grin_chain = { path = "./chain", version = "5.4.0" }
grin_store = { path = "./store", version = "5.4.0" }
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_api"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "APIs for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
license = "Apache-2.0"
@@ -32,9 +32,9 @@ async-stream = "0.3"
url = "2.1"
bytes = "1"
grin_core = { path = "../core", version = "5.4.0-alpha.0" }
grin_chain = { path = "../chain", version = "5.4.0-alpha.0" }
grin_p2p = { path = "../p2p", version = "5.4.0-alpha.0" }
grin_pool = { path = "../pool", version = "5.4.0-alpha.0" }
grin_store = { path = "../store", version = "5.4.0-alpha.0" }
grin_util = { path = "../util", version = "5.4.0-alpha.0" }
grin_core = { path = "../core", version = "5.4.0" }
grin_chain = { path = "../chain", version = "5.4.0" }
grin_p2p = { path = "../p2p", version = "5.4.0" }
grin_pool = { path = "../pool", version = "5.4.0" }
grin_store = { path = "../store", version = "5.4.0" }
grin_util = { path = "../util", version = "5.4.0" }
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_chain"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
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.4.0-alpha.0" }
grin_keychain = { path = "../keychain", version = "5.4.0-alpha.0" }
grin_store = { path = "../store", version = "5.4.0-alpha.0" }
grin_util = { path = "../util", version = "5.4.0-alpha.0" }
grin_core = { path = "../core", version = "5.4.0" }
grin_keychain = { path = "../keychain", version = "5.4.0" }
grin_store = { path = "../store", version = "5.4.0" }
grin_util = { path = "../util", version = "5.4.0" }
[dev-dependencies]
env_logger = "0.7"
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_config"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
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.4.0-alpha.0" }
grin_servers = { path = "../servers", version = "5.4.0-alpha.0" }
grin_p2p = { path = "../p2p", version = "5.4.0-alpha.0" }
grin_util = { path = "../util", version = "5.4.0-alpha.0" }
grin_core = { path = "../core", version = "5.4.0" }
grin_servers = { path = "../servers", version = "5.4.0" }
grin_p2p = { path = "../p2p", version = "5.4.0" }
grin_util = { path = "../util", version = "5.4.0" }
[dev-dependencies]
pretty_assertions = "0.6.1"
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_core"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
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.4.0-alpha.0" }
util = { package = "grin_util", path = "../util", version = "5.4.0-alpha.0" }
keychain = { package = "grin_keychain", path = "../keychain", version = "5.4.0" }
util = { package = "grin_util", path = "../util", version = "5.4.0" }
[dev-dependencies]
serde_json = "1"
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_keychain"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
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.4.0-alpha.0" }
grin_util = { path = "../util", version = "5.4.0" }
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_p2p"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
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.4.0-alpha.0" }
grin_store = { path = "../store", version = "5.4.0-alpha.0" }
grin_util = { path = "../util", version = "5.4.0-alpha.0" }
grin_chain = { path = "../chain", version = "5.4.0-alpha.0" }
grin_core = { path = "../core", version = "5.4.0" }
grin_store = { path = "../store", version = "5.4.0" }
grin_util = { path = "../util", version = "5.4.0" }
grin_chain = { path = "../chain", version = "5.4.0" }
[dev-dependencies]
grin_pool = { path = "../pool", version = "5.4.0-alpha.0" }
grin_pool = { path = "../pool", version = "5.4.0" }
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_pool"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
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.4.0-alpha.0" }
grin_keychain = { path = "../keychain", version = "5.4.0-alpha.0" }
grin_util = { path = "../util", version = "5.4.0-alpha.0" }
grin_core = { path = "../core", version = "5.4.0" }
grin_keychain = { path = "../keychain", version = "5.4.0" }
grin_util = { path = "../util", version = "5.4.0" }
[dev-dependencies]
grin_chain = { path = "../chain", version = "5.4.0-alpha.0" }
grin_chain = { path = "../chain", version = "5.4.0" }
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_servers"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
license = "Apache-2.0"
@@ -28,11 +28,11 @@ async-stream = "0.3"
rustls = "0.20"
walkdir = "2.3.1"
grin_api = { path = "../api", version = "5.4.0-alpha.0" }
grin_chain = { path = "../chain", version = "5.4.0-alpha.0" }
grin_core = { path = "../core", version = "5.4.0-alpha.0" }
grin_keychain = { path = "../keychain", version = "5.4.0-alpha.0" }
grin_p2p = { path = "../p2p", version = "5.4.0-alpha.0" }
grin_pool = { path = "../pool", version = "5.4.0-alpha.0" }
grin_store = { path = "../store", version = "5.4.0-alpha.0" }
grin_util = { path = "../util", version = "5.4.0-alpha.0" }
grin_api = { path = "../api", version = "5.4.0" }
grin_chain = { path = "../chain", version = "5.4.0" }
grin_core = { path = "../core", version = "5.4.0" }
grin_keychain = { path = "../keychain", version = "5.4.0" }
grin_p2p = { path = "../p2p", version = "5.4.0" }
grin_pool = { path = "../pool", version = "5.4.0" }
grin_store = { path = "../store", version = "5.4.0" }
grin_util = { path = "../util", version = "5.4.0" }
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_store"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
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.4.0-alpha.0" }
grin_util = { path = "../util", version = "5.4.0-alpha.0" }
grin_core = { path = "../core", version = "5.4.0" }
grin_util = { path = "../util", version = "5.4.0" }
[dev-dependencies]
chrono = "0.4.11"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "grin_util"
version = "5.4.0-alpha.0"
version = "5.4.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
license = "Apache-2.0"