Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.9.0 #3066

Merged
merged 1 commit into from
Jul 7, 2021
Merged

v0.9.0 #3066

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .clog.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[clog]
# A repository link with the trailing '.git' which will be used to generate
# all commit and issue links
repository = "https://github.com/tari-project/tari"

# specify the style of commit links to generate, defaults to "github" if omitted
link-style = "github"
changelog = "changelog.md"
from-latest-tag = true
44 changes: 22 additions & 22 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.8.11"
version = "0.9.0"
edition = "2018"

[dependencies]
tari_common_types = { version = "^0.8", path = "../../base_layer/common_types"}
tari_common_types = { version = "^0.9", path = "../../base_layer/common_types"}
tari_core = { path = "../../base_layer/core"}
tari_wallet = { path = "../../base_layer/wallet"}
tari_crypto = "0.11.1"
Expand Down
4 changes: 2 additions & 2 deletions 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.8.11"
version = "0.9.0"
authors = ["The Tari Development Community"]
edition = "2018"

Expand All @@ -27,7 +27,7 @@ tonic = "0.2"

[dependencies.tari_core]
path = "../../base_layer/core"
version = "^0.8"
version = "^0.9"
default-features = false
features = ["transactions"]

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.8.11"
version = "0.9.0"
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions 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.8.11"
version = "0.9.0"
authors = ["The Tari Development Community"]
edition = "2018"

Expand Down Expand Up @@ -36,7 +36,7 @@ tonic = "0.2"

[dependencies.tari_core]
path = "../../base_layer/core"
version = "^0.8"
version = "^0.9"
default-features = false
features = ["transactions", "mempool_proto", "base_node_proto"]

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 miner proxy for xmrig"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.8.11"
version = "0.9.0"
edition = "2018"

[features]
Expand Down
2 changes: 1 addition & 1 deletion applications/tari_mining_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 mining node implementation"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.8.11"
version = "0.9.0"
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions applications/test_faucet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_faucet"
version = "0.8.11"
version = "0.9.0"
authors = ["The Tari Development Community"]
edition = "2018"

Expand All @@ -14,7 +14,7 @@ rand = "0.8"
tari_crypto = "0.11.1"

[dependencies.tari_core]
version = "^0.8"
version = "^0.9"
path = "../../base_layer/core/"
default-features = false
features = ["transactions", "avx2"]
Expand Down
2 changes: 1 addition & 1 deletion base_layer/common_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tari_common_types"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency common types"
license = "BSD-3-Clause"
version = "0.8.11"
version = "0.9.0"
edition = "2018"

[dependencies]
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.8.11"
version = "0.9.0"
edition = "2018"

[features]
Expand All @@ -18,18 +18,18 @@ base_node_proto = []
avx2 = ["tari_crypto/avx2"]

[dependencies]
tari_common = { version = "^0.8", path = "../../common"}
tari_common_types = { version = "^0.8", path = "../../base_layer/common_types"}
tari_comms = { version = "^0.8", path = "../../comms"}
tari_comms_dht = { version = "^0.8", path = "../../comms/dht"}
tari_comms_rpc_macros = { version = "^0.8", path = "../../comms/rpc_macros"}
tari_common = { version = "^0.9", path = "../../common"}
tari_common_types = { version = "^0.9", path = "../../base_layer/common_types"}
tari_comms = { version = "^0.9", path = "../../comms"}
tari_comms_dht = { version = "^0.9", path = "../../comms/dht"}
tari_comms_rpc_macros = { version = "^0.9", path = "../../comms/rpc_macros"}
tari_crypto = "0.11.1"
tari_mmr = { version = "^0.8", path = "../../base_layer/mmr", optional = true }
tari_p2p = { version = "^0.8", path = "../../base_layer/p2p" }
tari_service_framework = { version = "^0.8", path = "../service_framework"}
tari_shutdown = { version = "^0.8", path = "../../infrastructure/shutdown" }
tari_storage = { version = "^0.8", path = "../../infrastructure/storage" }
tari_test_utils = { version = "^0.8", path = "../../infrastructure/test_utils" }
tari_mmr = { version = "^0.9", path = "../../base_layer/mmr", optional = true }
tari_p2p = { version = "^0.9", path = "../../base_layer/p2p" }
tari_service_framework = { version = "^0.9", path = "../service_framework"}
tari_shutdown = { version = "^0.9", path = "../../infrastructure/shutdown" }
tari_storage = { version = "^0.9", path = "../../infrastructure/storage" }
tari_test_utils = { version = "^0.9", path = "../../infrastructure/test_utils" }

bincode = "1.1.4"
bitflags = "1.0.4"
Expand Down Expand Up @@ -61,13 +61,13 @@ uint = { version = "0.9", default-features = false }
num-format = "0.4.0"

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

config = { version = "0.9.3" }
env_logger = "0.7.0"
tempfile = "3.1.0"
tokio-macros = "0.2.4"

[build-dependencies]
tari_common = { version = "^0.8", path="../../common", features = ["build"]}
tari_common = { version = "^0.9", path="../../common", features = ["build"]}
2 changes: 1 addition & 1 deletion base_layer/key_manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet key management"
repository = "https://github.com/tari-project/tari"
license = "BSD-3-Clause"
version = "0.8.11"
version = "0.9.0"
edition = "2018"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions 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.8.11"
version = "0.9.0"
edition = "2018"

[features]
Expand All @@ -24,7 +24,7 @@ criterion = { version="0.2", optional = true }
[dev-dependencies]
rand="0.8.0"
blake2 = "0.9.0"
tari_infra_derive= { path = "../../infrastructure/derive", version = "^0.8" }
tari_infra_derive= { path = "../../infrastructure/derive", version = "^0.9" }
tari_crypto = "0.11.1"
serde_json = "1.0"
bincode = "1.1"
Expand Down
Loading