diff --git a/Cargo.lock b/Cargo.lock index 62ef0849ce..72f736ef09 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3342,7 +3342,7 @@ dependencies = [ [[package]] name = "nym-bin-common" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap 4.1.4", "clap_complete", diff --git a/common/bin-common/Cargo.toml b/common/bin-common/Cargo.toml index 531709ab48..0b3c1a5af5 100644 --- a/common/bin-common/Cargo.toml +++ b/common/bin-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-bin-common" -version = "0.1.0" +version = "0.2.0" description = "Common code for nym binaries" edition = { workspace = true } authors = { workspace = true } diff --git a/common/cosmwasm-smart-contracts/contracts-common/Cargo.toml b/common/cosmwasm-smart-contracts/contracts-common/Cargo.toml index b0b93d70e8..e5b6dd66eb 100644 --- a/common/cosmwasm-smart-contracts/contracts-common/Cargo.toml +++ b/common/cosmwasm-smart-contracts/contracts-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-contracts-common" -version = "0.1.0" +version = "0.2.0" description = "Common library for Nym cosmwasm contracts" edition = { workspace = true } authors = { workspace = true } diff --git a/common/cosmwasm-smart-contracts/mixnet-contract/Cargo.toml b/common/cosmwasm-smart-contracts/mixnet-contract/Cargo.toml index fec9864943..670c993554 100644 --- a/common/cosmwasm-smart-contracts/mixnet-contract/Cargo.toml +++ b/common/cosmwasm-smart-contracts/mixnet-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-mixnet-contract-common" -version = "0.1.0" +version = "0.2.0" description = "Common library for the Nym mixnet contract" rust-version = "1.62" edition = { workspace = true } @@ -15,7 +15,7 @@ serde = { version = "1.0", features = ["derive"] } serde_repr = "0.1" schemars = "0.8" thiserror = "1.0" -contracts-common = { path = "../contracts-common", package = "nym-contracts-common", version = "0.1.0" } +contracts-common = { path = "../contracts-common", package = "nym-contracts-common", version = "0.2.0" } serde_json = "1.0.0" humantime-serde = "1.1.1" diff --git a/common/cosmwasm-smart-contracts/vesting-contract/Cargo.toml b/common/cosmwasm-smart-contracts/vesting-contract/Cargo.toml index 8e0d24b9df..7742b7c7a8 100644 --- a/common/cosmwasm-smart-contracts/vesting-contract/Cargo.toml +++ b/common/cosmwasm-smart-contracts/vesting-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-vesting-contract-common" -version = "0.1.0" +version = "0.2.0" description = "Common library for the Nym vesting contract" edition = { workspace = true } authors = { workspace = true } @@ -9,8 +9,8 @@ repository = { workspace = true } [dependencies] cosmwasm-std = "1.0.0" -mixnet-contract-common = { path = "../mixnet-contract", package = "nym-mixnet-contract-common", version = "0.1.0" } -contracts-common = { path = "../contracts-common", package = "nym-contracts-common", version = "0.1.0" } +mixnet-contract-common = { path = "../mixnet-contract", package = "nym-mixnet-contract-common", version = "0.2.0" } +contracts-common = { path = "../contracts-common", package = "nym-contracts-common", version = "0.2.0" } serde = { version = "1.0", features = ["derive"] } schemars = "0.8" ts-rs = {version = "6.1.2", optional = true} diff --git a/common/crypto/Cargo.toml b/common/crypto/Cargo.toml index 0600adf87d..21ff8cb7a3 100644 --- a/common/crypto/Cargo.toml +++ b/common/crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-crypto" -version = "0.1.0" +version = "0.2.0" description = "Crypto library for the nym mixnet" edition = { workspace = true } authors = { workspace = true } @@ -26,8 +26,8 @@ subtle-encoding = { version = "0.5", features = ["bech32-preview"]} thiserror = "1.0.37" # internal -nym-sphinx-types = { path = "../nymsphinx/types", version = "0.1.0" } -nym-pemstore = { path = "../../common/pemstore", version = "0.1.0" } +nym-sphinx-types = { path = "../nymsphinx/types", version = "0.2.0" } +nym-pemstore = { path = "../../common/pemstore", version = "0.2.0" } [dev-dependencies] rand_chacha = "0.2" diff --git a/common/nymsphinx/Cargo.toml b/common/nymsphinx/Cargo.toml index d5d10ea633..c4d53a70a5 100644 --- a/common/nymsphinx/Cargo.toml +++ b/common/nymsphinx/Cargo.toml @@ -23,7 +23,7 @@ nym-sphinx-types = { path = "types" } # those dependencies are due to intriducing preparer and receiver. Perpaphs that indicates they should be moved # to separate crate? -nym-crypto = { path = "../crypto", version = "0.1.0" } +nym-crypto = { path = "../crypto", version = "0.2.0" } nym-topology = { path = "../topology" } [dev-dependencies] diff --git a/common/nymsphinx/types/Cargo.toml b/common/nymsphinx/types/Cargo.toml index 53e399ebcf..6be749396a 100644 --- a/common/nymsphinx/types/Cargo.toml +++ b/common/nymsphinx/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-sphinx-types" -version = "0.1.0" +version = "0.2.0" description = "Re-export sphinx packet types" edition = { workspace = true } authors = { workspace = true } diff --git a/common/pemstore/Cargo.toml b/common/pemstore/Cargo.toml index 9fbbcf263b..1f1b8af550 100644 --- a/common/pemstore/Cargo.toml +++ b/common/pemstore/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nym-pemstore" description = "Store private-public keypairs in PEM format" -version = "0.1.0" +version = "0.2.0" edition = { workspace = true } authors = { workspace = true } license = { workspace = true } diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index 408bda5fdf..8354133c9c 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -46,7 +46,7 @@ mixnet-client = { path="../common/client-libs/mixnet-client" } mixnode-common = { path="../common/mixnode-common" } nym-nonexhaustive-delayqueue = { path="../common/nonexhaustive-delayqueue" } nym-sphinx = { path="../common/nymsphinx" } -nym-pemstore = { path = "../common/pemstore", version = "0.1.0" } +nym-pemstore = { path = "../common/pemstore", version = "0.2.0" } nym-task = { path = "../common/task" } nym-types = { path = "../common/types" } nym-topology = { path="../common/topology" }