Skip to content

Commit

Permalink
v0.44.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stringhandler committed Jan 18, 2023
1 parent fb2fa4b commit 5c50662
Show file tree
Hide file tree
Showing 27 changed files with 112 additions and 90 deletions.
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.43.3"
version = "0.44.0"
edition = "2018"

[dependencies]
tari_common_types = { version = "^0.43", path = "../../base_layer/common_types" }
tari_common_types = { version = "^0.44", 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.43.3"
version = "0.44.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.43.3"
version = "0.44.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.43.3"
version = "0.44.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.43.3"
version = "0.44.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.43.3"
version = "0.44.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.43.3"
version = "0.44.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.43", path = "../../common" }
tari_common = { version = "^0.44", path = "../../common" }

base64 = "0.13.0"
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.43.3"
version = "0.44.0"
edition = "2018"

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

[dependencies]
tari_common = { version = "^0.43", path = "../../common" }
tari_common_types = { version = "^0.43", path = "../../base_layer/common_types" }
tari_comms = { version = "^0.43", path = "../../comms/core" }
tari_comms_dht = { version = "^0.43", path = "../../comms/dht" }
tari_comms_rpc_macros = { version = "^0.43", path = "../../comms/rpc_macros" }
tari_common = { version = "^0.44", path = "../../common" }
tari_common_types = { version = "^0.44", path = "../../base_layer/common_types" }
tari_comms = { version = "^0.44", path = "../../comms/core" }
tari_comms_dht = { version = "^0.44", path = "../../comms/dht" }
tari_comms_rpc_macros = { version = "^0.44", 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.43", path = "../../base_layer/mmr", optional = true, features = ["native_bitmap"] }
tari_p2p = { version = "^0.43", path = "../../base_layer/p2p" }
tari_mmr = { version = "^0.44", path = "../../base_layer/mmr", optional = true, features = ["native_bitmap"] }
tari_p2p = { version = "^0.44", path = "../../base_layer/p2p" }
tari_script = { path = "../../infrastructure/tari_script" }
tari_service_framework = { version = "^0.43", path = "../service_framework" }
tari_shutdown = { version = "^0.43", path = "../../infrastructure/shutdown" }
tari_storage = { version = "^0.43", path = "../../infrastructure/storage" }
tari_test_utils = { version = "^0.43", path = "../../infrastructure/test_utils" }
tari_service_framework = { version = "^0.44", path = "../service_framework" }
tari_shutdown = { version = "^0.44", path = "../../infrastructure/shutdown" }
tari_storage = { version = "^0.44", path = "../../infrastructure/storage" }
tari_test_utils = { version = "^0.44", path = "../../infrastructure/test_utils" }
tari_utilities = { git = "https://github.com/tari-project/tari_utilities.git", tag = "v0.4.10", features = ["borsh"] }

async-trait = "0.1.50"
Expand Down Expand Up @@ -78,15 +78,15 @@ uint = { version = "0.9", default-features = false }
zeroize = "1"

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

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

[build-dependencies]
tari_common = { version = "^0.43", path = "../../common", features = ["build"] }
tari_common = { version = "^0.44", 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.43.3"
version = "0.44.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.43", path = "../../base_layer/common_types", optional = true }
tari_common_types = { version = "^0.44", 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.43.3"
version = "0.44.0"
edition = "2018"

[features]
Expand Down
18 changes: 9 additions & 9 deletions base_layer/p2p/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tari_p2p"
version = "0.43.3"
version = "0.44.0"
authors = ["The Tari Development community"]
description = "Tari base layer-specific peer-to-peer communication features"
repository = "https://github.com/tari-project/tari"
Expand All @@ -10,13 +10,13 @@ license = "BSD-3-Clause"
edition = "2018"

[dependencies]
tari_comms = { version = "^0.43", path = "../../comms/core" }
tari_comms_dht = { version = "^0.43", path = "../../comms/dht" }
tari_common = { version = "^0.43", path = "../../common" }
tari_comms = { version = "^0.44", path = "../../comms/core" }
tari_comms_dht = { version = "^0.44", path = "../../comms/dht" }
tari_common = { version = "^0.44", path = "../../common" }
tari_crypto = { git = "https://github.com/tari-project/tari-crypto.git", tag = "v0.16.6" }
tari_service_framework = { version = "^0.43", path = "../service_framework" }
tari_shutdown = { version = "^0.43", path = "../../infrastructure/shutdown" }
tari_storage = { version = "^0.43", path = "../../infrastructure/storage" }
tari_service_framework = { version = "^0.44", path = "../service_framework" }
tari_shutdown = { version = "^0.44", path = "../../infrastructure/shutdown" }
tari_storage = { version = "^0.44", path = "../../infrastructure/storage" }
tari_utilities = { git = "https://github.com/tari-project/tari_utilities.git", tag="v0.4.10" }

anyhow = "1.0.53"
Expand All @@ -43,15 +43,15 @@ trust-dns-client = { version = "=0.21.0-alpha.5", features = ["dns-over-rustls"]
webpki = "0.21"

[dev-dependencies]
tari_test_utils = { version = "^0.43", path = "../../infrastructure/test_utils" }
tari_test_utils = { version = "^0.44", path = "../../infrastructure/test_utils" }

config = "0.13.0"
clap = "2.33.0"
lazy_static = "1.3.0"
tempfile = "3.1.0"

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

[features]
test-mocks = []
Expand Down
6 changes: 3 additions & 3 deletions base_layer/service_framework/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tari_service_framework"
version = "0.43.3"
version = "0.44.0"
authors = ["The Tari Development Community"]
description = "The Tari communication stack service framework"
repository = "https://github.com/tari-project/tari"
Expand All @@ -10,7 +10,7 @@ license = "BSD-3-Clause"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tari_shutdown = { version = "^0.43", path = "../../infrastructure/shutdown" }
tari_shutdown = { version = "^0.44", path = "../../infrastructure/shutdown" }

anyhow = "1.0.53"
async-trait = "0.1.50"
Expand All @@ -21,7 +21,7 @@ tokio = { version = "1.23", features = ["rt"] }
tower-service = { version = "0.3" }

[dev-dependencies]
tari_test_utils = { version = "^0.43", path = "../../infrastructure/test_utils" }
tari_test_utils = { version = "^0.44", path = "../../infrastructure/test_utils" }

tokio = { version = "1.23", features = ["rt-multi-thread", "macros", "time"] }
futures-test = { version = "0.3.3" }
Expand Down
4 changes: 2 additions & 2 deletions base_layer/tari_mining_helper_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name = "tari_mining_helper_ffi"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency miningcore C FFI bindings"
license = "BSD-3-Clause"
version = "0.43.3"
version = "0.44.0"
edition = "2018"

[dependencies]
tari_comms = { version = "^0.43", path = "../../comms/core" }
tari_comms = { version = "^0.44", path = "../../comms/core" }
tari_crypto = { git = "https://github.com/tari-project/tari-crypto.git", tag = "v0.16.6"}
tari_common = { path = "../../common" }
tari_core = { path = "../core", default-features = false, features = ["transactions"]}
Expand Down
28 changes: 14 additions & 14 deletions base_layer/wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ name = "tari_wallet"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet library"
license = "BSD-3-Clause"
version = "0.43.3"
version = "0.44.0"
edition = "2018"

[dependencies]
tari_core = {path = "../../base_layer/core", version = "^0.43", default-features = false, features = ["transactions", "mempool_proto", "base_node_proto"]}
tari_core = {path = "../../base_layer/core", version = "^0.44", default-features = false, features = ["transactions", "mempool_proto", "base_node_proto"]}
tari_common = { path = "../../common" }
tari_common_types = { version = "^0.43", path = "../../base_layer/common_types" }
tari_comms = { version = "^0.43", path = "../../comms/core" }
tari_comms_dht = { version = "^0.43", path = "../../comms/dht" }
tari_common_types = { version = "^0.44", path = "../../base_layer/common_types" }
tari_comms = { version = "^0.44", path = "../../comms/core" }
tari_comms_dht = { version = "^0.44", path = "../../comms/dht" }
tari_crypto = { git = "https://github.com/tari-project/tari-crypto.git", tag = "v0.16.6" }
tari_key_manager = { version = "^0.43", path = "../key_manager" }
tari_p2p = { version = "^0.43", path = "../p2p", features = ["auto-update"] }
tari_key_manager = { version = "^0.44", path = "../key_manager" }
tari_p2p = { version = "^0.44", path = "../p2p", features = ["auto-update"] }
tari_script = { path = "../../infrastructure/tari_script" }
tari_service_framework = { version = "^0.43", path = "../service_framework" }
tari_shutdown = { version = "^0.43", path = "../../infrastructure/shutdown" }
tari_storage = { version = "^0.43", path = "../../infrastructure/storage" }
tari_service_framework = { version = "^0.44", path = "../service_framework" }
tari_shutdown = { version = "^0.44", path = "../../infrastructure/shutdown" }
tari_storage = { version = "^0.44", path = "../../infrastructure/storage" }
tari_common_sqlite = { path = "../../common_sqlite" }
tari_utilities = { git = "https://github.com/tari-project/tari_utilities.git", tag="v0.4.10" }

Expand Down Expand Up @@ -59,10 +59,10 @@ chacha20poly1305 = "0.10.1"
zeroize = "1"

[dev-dependencies]
tari_p2p = { version = "^0.43", path = "../p2p", features = ["test-mocks"] }
tari_comms_dht = { version = "^0.43", path = "../../comms/dht", features = ["test-mocks"] }
tari_test_utils = { version = "^0.43", path = "../../infrastructure/test_utils" }
tari_core = {path = "../../base_layer/core", version = "^0.43", default-features = false, features = ["transactions", "mempool_proto", "base_node_proto", "base_node"]}
tari_p2p = { version = "^0.44", path = "../p2p", features = ["test-mocks"] }
tari_comms_dht = { version = "^0.44", path = "../../comms/dht", features = ["test-mocks"] }
tari_test_utils = { version = "^0.44", path = "../../infrastructure/test_utils" }
tari_core = {path = "../../base_layer/core", version = "^0.44", default-features = false, features = ["transactions", "mempool_proto", "base_node_proto", "base_node"]}
env_logger = "0.7.1"
prost = "0.9.0"

Expand Down
22 changes: 11 additions & 11 deletions base_layer/wallet_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ name = "tari_wallet_ffi"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet C FFI bindings"
license = "BSD-3-Clause"
version = "0.43.3"
version = "0.44.0"
edition = "2018"

[dependencies]
tari_core = { version = "^0.43", path = "../../base_layer/core", default-features = false, features = ["tari_mmr", "transactions"]}
tari_core = { version = "^0.44", path = "../../base_layer/core", default-features = false, features = ["tari_mmr", "transactions"]}
tari_common = {path="../../common"}
tari_common_types = {path="../common_types"}
tari_comms = { version = "^0.43", path = "../../comms/core", features = ["c_integration"]}
tari_comms_dht = { version = "^0.43", path = "../../comms/dht", default-features = false }
tari_comms = { version = "^0.44", path = "../../comms/core", features = ["c_integration"]}
tari_comms_dht = { version = "^0.44", path = "../../comms/dht", default-features = false }
tari_crypto = { git = "https://github.com/tari-project/tari-crypto.git", tag = "v0.16.6" }
tari_key_manager = { version = "^0.43", path = "../key_manager" }
tari_p2p = { version = "^0.43", path = "../p2p" }
tari_key_manager = { version = "^0.44", path = "../key_manager" }
tari_p2p = { version = "^0.44", path = "../p2p" }
tari_script = { path = "../../infrastructure/tari_script" }
tari_shutdown = { version = "^0.43", path = "../../infrastructure/shutdown" }
tari_shutdown = { version = "^0.44", path = "../../infrastructure/shutdown" }
tari_utilities = { git = "https://github.com/tari-project/tari_utilities.git", tag="v0.4.10" }
tari_wallet = { version = "^0.43", path = "../wallet", features = ["c_integration"]}
tari_wallet = { version = "^0.44", path = "../wallet", features = ["c_integration"]}

chacha20poly1305 = "0.10.1"
chrono = { version = "0.4.19", default-features = false, features = ["serde"] }
Expand Down Expand Up @@ -52,9 +52,9 @@ crate-type = ["staticlib","cdylib"]
[dev-dependencies]
tempfile = "3.1.0"
lazy_static = "1.3.0"
tari_key_manager = { version = "^0.43", path = "../key_manager" }
tari_common_types = { version = "^0.43", path = "../../base_layer/common_types"}
tari_test_utils = { version = "^0.43", path = "../../infrastructure/test_utils"}
tari_key_manager = { version = "^0.44", path = "../key_manager" }
tari_common_types = { version = "^0.44", path = "../../base_layer/common_types"}
tari_test_utils = { version = "^0.44", path = "../../infrastructure/test_utils"}
tari_service_framework = { path = "../../base_layer/service_framework" }
borsh = "0.9.3"

Expand Down
22 changes: 22 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [0.44.0](https://github.com/tari-project/tari/compare/v0.43.3...v0.44.0) (2023-01-18)


### ⚠ BREAKING CHANGES

* prune mode sync (#5124)

### Features

* add tx_id_to export ([#5126](https://github.com/tari-project/tari/issues/5126)) ([7eeeff4](https://github.com/tari-project/tari/commit/7eeeff4bbd5a147bd35e9ae7af75dba1da87383b))
* increase wallet FFI error codes ([#5118](https://github.com/tari-project/tari/issues/5118)) ([d5db596](https://github.com/tari-project/tari/commit/d5db596a2f4522427af7ff380b6e4974152d6ada))
* provide password feedback ([#5111](https://github.com/tari-project/tari/issues/5111)) ([a568e04](https://github.com/tari-project/tari/commit/a568e0464c5da047df316356edb856bff34de4f0))


### Bug Fixes

* add burnt utxos to side chain query ([#5125](https://github.com/tari-project/tari/issues/5125)) ([fb2fa4b](https://github.com/tari-project/tari/commit/fb2fa4b4c7b3a72360926c4d300cd0ce0056dc54))
* automatically set base node fetures on startup, sign only if necessary ([#5108](https://github.com/tari-project/tari/issues/5108)) ([9aa9436](https://github.com/tari-project/tari/commit/9aa9436e945f6db59b34ad9c29a973fdc6515eda))
* **dht:** check for empty body contents in initial msg validation ([#5123](https://github.com/tari-project/tari/issues/5123)) ([48bf2d9](https://github.com/tari-project/tari/commit/48bf2d9302dcc1c8c0953a4576d09dc07577cb3f))
* prune mode sync ([#5124](https://github.com/tari-project/tari/issues/5124)) ([8fa076a](https://github.com/tari-project/tari/commit/8fa076ad0ea5d9c4408b0e863e4f24cfa2a8258a))
* vanity_id example should create id with base node features ([#5107](https://github.com/tari-project/tari/issues/5107)) ([3b21199](https://github.com/tari-project/tari/commit/3b21199dcf4639a7ca5cff727bcb49927b624842))

### [0.43.3](https://github.com/tari-project/tari/compare/v0.43.2...v0.43.3) (2023-01-12)


Expand Down
4 changes: 2 additions & 2 deletions common/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.43.3"
version = "0.44.0"
edition = "2018"

[features]
Expand Down Expand Up @@ -37,5 +37,5 @@ blake2 = "0.9.1"
sha3 = "0.9.0"

[dev-dependencies]
tari_test_utils = { version = "^0.43", path = "../infrastructure/test_utils"}
tari_test_utils = { version = "^0.44", path = "../infrastructure/test_utils"}
toml = "0.5.8"
2 changes: 1 addition & 1 deletion common_sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tari_common_sqlite"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet library"
license = "BSD-3-Clause"
version = "0.43.3"
version = "0.44.0"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
Loading

0 comments on commit 5c50662

Please sign in to comment.