Skip to content

Commit

Permalink
v0.46.0
Browse files Browse the repository at this point in the history
⚠ BREAKING CHANGES

* add key commitment to database main key AEAD  (5188)

Features

* add key commitment to database main key AEAD  ([5188](#5188)) ([95bc795](95bc795))
* add more burn details to burn command ([5169](#5169)) ([e417e57](e417e57))
* print out warning if wallet grpc connections fails ([5195](#5195)) ([4e1cb38](4e1cb38))


Bug Fixes

* add missing consensus constants to get_constants grpc ([5183](#5183)) ([9900d5d](9900d5d))
  • Loading branch information
SWvheerden committed Feb 21, 2023
1 parent 95bc795 commit 8abce6f
Show file tree
Hide file tree
Showing 28 changed files with 130 additions and 112 deletions.
46 changes: 23 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions applications/tari_app_grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ authors = ["The Tari Development Community"]
description = "This crate is to provide a single source for all cross application grpc files and conversions to and from tari::core"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.45.0"
version = "0.46.0"
edition = "2018"

[dependencies]
tari_common_types = { version = "^0.45", path = "../../base_layer/common_types" }
tari_common_types = { version = "^0.46", path = "../../base_layer/common_types" }
tari_comms = { path = "../../comms/core" }
tari_core = { path = "../../base_layer/core" }
tari_crypto = { git = "https://github.com/tari-project/tari-crypto.git", tag = "v0.16.6" }
Expand Down
2 changes: 1 addition & 1 deletion applications/tari_app_utilities/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tari_app_utilities"
version = "0.45.0"
version = "0.46.0"
authors = ["The Tari Development Community"]
edition = "2018"
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion applications/tari_base_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "The tari full base node implementation"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.45.0"
version = "0.46.0"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion applications/tari_console_wallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tari_console_wallet"
version = "0.45.0"
version = "0.46.0"
authors = ["The Tari Development Community"]
edition = "2018"
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion applications/tari_merge_mining_proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "The Tari merge mining proxy for xmrig"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.45.0"
version = "0.46.0"
edition = "2018"

[features]
Expand Down
2 changes: 1 addition & 1 deletion applications/tari_miner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "The tari miner implementation"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.45.0"
version = "0.46.0"
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions base_layer/common_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name = "tari_common_types"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency common types"
license = "BSD-3-Clause"
version = "0.45.0"
version = "0.46.0"
edition = "2018"

[dependencies]
tari_crypto = { git = "https://github.com/tari-project/tari-crypto.git", tag = "v0.16.6" }
tari_utilities = { git = "https://github.com/tari-project/tari_utilities.git", tag="v0.4.10" }
# TODO: remove this dependency and move Network into tari_common_types
tari_common = { version = "^0.45", path = "../../common" }
tari_common = { version = "^0.46", path = "../../common" }


borsh = "0.9.3"
Expand Down
30 changes: 15 additions & 15 deletions base_layer/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/tari-project/tari"
homepage = "https://tari.com"
readme = "README.md"
license = "BSD-3-Clause"
version = "0.45.0"
version = "0.46.0"
edition = "2018"

[features]
Expand All @@ -19,20 +19,20 @@ avx2 = ["tari_crypto/simd_backend"]
benches = ["base_node", "criterion"]

[dependencies]
tari_common = { version = "^0.45", path = "../../common" }
tari_common_types = { version = "^0.45", path = "../../base_layer/common_types" }
tari_comms = { version = "^0.45", path = "../../comms/core" }
tari_comms_dht = { version = "^0.45", path = "../../comms/dht" }
tari_comms_rpc_macros = { version = "^0.45", path = "../../comms/rpc_macros" }
tari_common = { version = "^0.46", path = "../../common" }
tari_common_types = { version = "^0.46", path = "../../base_layer/common_types" }
tari_comms = { version = "^0.46", path = "../../comms/core" }
tari_comms_dht = { version = "^0.46", path = "../../comms/dht" }
tari_comms_rpc_macros = { version = "^0.46", path = "../../comms/rpc_macros" }
tari_crypto = { git = "https://github.com/tari-project/tari-crypto.git", tag = "v0.16.6", features = ["borsh"] }
tari_metrics = { path = "../../infrastructure/metrics" }
tari_mmr = { version = "^0.45", path = "../../base_layer/mmr", optional = true, features = ["native_bitmap"] }
tari_p2p = { version = "^0.45", path = "../../base_layer/p2p" }
tari_mmr = { version = "^0.46", path = "../../base_layer/mmr", optional = true, features = ["native_bitmap"] }
tari_p2p = { version = "^0.46", path = "../../base_layer/p2p" }
tari_script = { path = "../../infrastructure/tari_script" }
tari_service_framework = { version = "^0.45", path = "../service_framework" }
tari_shutdown = { version = "^0.45", path = "../../infrastructure/shutdown" }
tari_storage = { version = "^0.45", path = "../../infrastructure/storage" }
tari_test_utils = { version = "^0.45", path = "../../infrastructure/test_utils" }
tari_service_framework = { version = "^0.46", path = "../service_framework" }
tari_shutdown = { version = "^0.46", path = "../../infrastructure/shutdown" }
tari_storage = { version = "^0.46", path = "../../infrastructure/storage" }
tari_test_utils = { version = "^0.46", path = "../../infrastructure/test_utils" }
tari_utilities = { git = "https://github.com/tari-project/tari_utilities.git", tag = "v0.4.10", features = ["borsh"] }

bincode = "1.1.4"
Expand Down Expand Up @@ -76,15 +76,15 @@ uint = { version = "0.9", default-features = false }
zeroize = "1"

[dev-dependencies]
tari_p2p = { version = "^0.45", path = "../../base_layer/p2p", features = ["test-mocks"] }
tari_test_utils = { version = "^0.45", path = "../../infrastructure/test_utils" }
tari_p2p = { version = "^0.46", path = "../../base_layer/p2p", features = ["test-mocks"] }
tari_test_utils = { version = "^0.46", path = "../../infrastructure/test_utils" }

config = { version = "0.13.0" }
env_logger = "0.7.0"
tempfile = "3.1.0"

[build-dependencies]
tari_common = { version = "^0.45", path = "../../common", features = ["build"] }
tari_common = { version = "^0.46", path = "../../common", features = ["build"] }

[[bench]]
name = "mempool"
Expand Down
4 changes: 2 additions & 2 deletions base_layer/key_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet key management"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.45.0"
version = "0.46.0"
edition = "2021"

[lib]
crate-type = ["lib", "cdylib"]

# NB: All dependencies must support or be gated for the WASM target.
[dependencies]
tari_common_types = { version = "^0.45", path = "../../base_layer/common_types", optional = true }
tari_common_types = { version = "^0.46", path = "../../base_layer/common_types", optional = true }
tari_crypto = { git = "https://github.com/tari-project/tari-crypto.git", tag = "v0.16.6" }
tari_utilities = { git = "https://github.com/tari-project/tari_utilities.git", tag="v0.4.10" }

Expand Down
2 changes: 1 addition & 1 deletion base_layer/mmr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "A Merkle Mountain Range implementation"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.45.0"
version = "0.46.0"
edition = "2018"

[features]
Expand Down
Loading

0 comments on commit 8abce6f

Please sign in to comment.