Skip to content

Commit

Permalink
version: bump all crates to include updated utils
Browse files Browse the repository at this point in the history
  • Loading branch information
felsweg-iota committed Jun 3, 2022
1 parent ff8b29c commit 29ad793
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 24 deletions.
22 changes: 22 additions & 0 deletions .changes/bumps-and-bruises.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
"stronghold-p2p" : patch
"iota_stronghold" : patch
"stronghold_engine" : patch
"stronghold-rlu" : patch
"stronghold-runtime" : patch
"stronghold-utils" : minor
"stronghold-derive" : patch
---

it's a bumpy ride.


stronghold-p2p = "0.4.0"
iota_stronghold = "0.5.0"
stronghold_engine = "0.5.1"
stronghold-rlu = "0.4.0"
stronghold-runtime = "0.5.0"
stronghold-utils = "0.3.0"


stronghold-derive = "0.3.0"
6 changes: 3 additions & 3 deletions client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "iota_stronghold"
version = "0.5.1"
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -37,10 +37,10 @@ hkdf = { version = "0.11" }
bincode = { version = "1.3" }
pin-project = { version = "1.0.10", optional = true }
futures = { version = "0.3.21", optional = true }
stronghold-p2p = { package = "stronghold-p2p", path = "../p2p", version = "0.4.1", optional = true }
stronghold-p2p = { package = "stronghold-p2p", path = "../p2p", version = "0.4.0", optional = true }
rlu = { package = "stronghold-rlu", path = "../rlu/", version = "0.4.0" }
engine = { package = "stronghold_engine", path = "../engine", version = "0.5.1" }
stronghold_utils = { package = "stronghold-utils", path = "../utils/", version = "0.4.0" }
stronghold_utils = { package = "stronghold-utils", path = "../utils/", version = "0.3.0" }
stronghold_derive = { package = "stronghold-derive", path = "../derive", version = "0.3.0" }

[dev-dependencies]
Expand Down
28 changes: 14 additions & 14 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stronghold_engine"
version = "0.5.2"
version = "0.5.1"
authors = [
"IOTA Stiftung",
"tensorprogramming <tensordeveloper@gmail.com>"
Expand All @@ -27,25 +27,25 @@ once_cell = "1.4"
zeroize = { version = "1.4.3" }
serde = { version = "1.0", features = [ "derive" ] }

[dependencies.stronghold-runtime]
path = "runtime"
version = "0.5"
[dependencies.stronghold-runtime]
path = "runtime"
version = "0.5"

[dependencies.digest]
version = "0.10.1"
optional = true
default-features = false
[dependencies.digest]
version = "0.10.1"
optional = true
default-features = false

[dependencies.iota-crypto]
version = "0.8.0"
features = [ "random", "chacha", "hmac", "sha", "x25519", "blake2b" ]
[dependencies.iota-crypto]
version = "0.8.0"
features = [ "random", "chacha", "hmac", "sha", "x25519", "blake2b" ]

[dev-dependencies]
tempfile = "3.1.0"
proptest = "1.0.0"
criterion = "0.3.3"
json = "0.12"

[dev-dependencies.stronghold-utils]
path = "../utils"
version = "0.4.0"
[dev-dependencies.stronghold-utils]
path = "../utils"
version = "0.3.0"
4 changes: 2 additions & 2 deletions p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stronghold-p2p"
version = "0.4.1"
version = "0.4.0"
authors = [ "IOTA Stiftung", "Elena Frank <elena.frank@iota.org" ]
edition = "2021"
readme = "README.md"
Expand Down Expand Up @@ -35,6 +35,6 @@ tcp-transport = [ "libp2p/tcp-tokio", "libp2p/dns-tokio", "libp2p/websocket" ]
actix-rt = "2.5"
regex = "1.5"
iota_stronghold = { path = "../client", features = [ "p2p" ] }
stronghold-utils = { version = "0.4.0", path = "../utils" }
stronghold-utils = { version = "0.3.0", path = "../utils" }
tokio = { version = "1.10", features = [ "time", "macros", "io-std", "io-util" ] }
libp2p = { version = "0.43.0", default-features = false, features = [ "tcp-tokio" ] }
2 changes: 1 addition & 1 deletion rlu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stronghold-rlu"
version = "0.4.1"
version = "0.4.0"
edition = "2021"
authors = [ "IOTA Stiftung" ]
license = "Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stronghold-utils"
version = "0.4.0"
version = "0.3.0"
authors = [
"IOTA Stiftung",
"tensor-programming <tensordeveloper@gmail.com>"
Expand All @@ -14,6 +14,6 @@ repository = "https://github.com/iotaledger/stronghold.rs"
[dependencies]
rand = "0.8.3"

[dependencies.stronghold-derive]
path = "../derive"
version = "0.3.0"
[dependencies.stronghold-derive]
path = "../derive"
version = "0.3.0"

0 comments on commit 29ad793

Please sign in to comment.