Skip to content

Commit

Permalink
v0.6.1, v0.2.12, v0.16.10
Browse files Browse the repository at this point in the history
Major changes since v0.6.0
---
- [#2431](#2431) Database refactor to remove checkpoints and more efficient calculation of MMR roots
- [#2352](#2352) Add DNS seed support in base node

Minor changes since v0.6.0
---
- [#2448](#2448) Add OpenSSL to Windows install, runtime
- [#2434](#2434) Add supervisord setup notes
- [#2439](#2439) Provide initial sync status to merge mining proxy
- [#2377](#2377) Message malleability detect and ban
- [#2447](#2447) Fix for xmrig powershell script
- [#2440](#2440) Stagenet Setup Guide Corrections
- [#2444](#2444) DHT connectivity waits for comms connectivity before starting
- [#2427](#2427) Update merge mining runtime, README, Win install
- [#2420](#2420) Show base node chain tip and sync status in the console wallet
- [#2419](#2419) Add optional fee_per_gram field to console wallet Send Tx form
- [#2421](#2421) Fix QR code rendering in the console wallet
- [#2423](#2423) Plumb in the balance in the console wallet
- [#2415](#2415) Prevent loop in peer sync by storing all peers attempted
- [#2383](#2383) Implement daemon-mode in tari_base_node
- [#2407](#2407) Simplify automated stress test
- [#2397](#2397) Fix preset config files
- [#2400](#2400) Implement wallet base node service
- [#2403](#2403) Add exclusive file locks to Wallet, Chain and Peer db’s
- [#2408](#2408) Fix wallet conversion error for a valid tx status
- [#2356](#2356) Combine validation code to use same function in pruned and archive mode.
- [#2371](#2371) Add configurable BN service request timeouts
- [#2430](#2430) Implement entry and persistence of custom base node in console wallet
  • Loading branch information
stringhandler committed Nov 24, 2020
1 parent 8d4280d commit aad9a51
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 26 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion applications/tari_app_grpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.6.0"
version = "0.6.1"
edition = "2018"

[dependencies]
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.6.0"
version = "0.6.1"
authors = ["Philip Robinson <[email protected]>"]
edition = "2018"

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.6.0"
version = "0.6.1"
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.6.0"
version = "0.6.1"
authors = ["Philip Robinson <[email protected]>"]
edition = "2018"

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.6.0"
version = "0.6.1"
edition = "2018"

[features]
Expand Down
2 changes: 1 addition & 1 deletion 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.2.11"
version = "0.2.12"
edition = "2018"

[features]
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.2.11"
version = "0.2.12"
edition = "2018"

[features]
Expand Down
2 changes: 1 addition & 1 deletion 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.2.11"
version = "0.2.12"
authors = ["The Tari Development community"]
description = "Tari base layer-specific peer-to-peer communication features"
repository = "https://github.com/tari-project/tari"
Expand Down
2 changes: 1 addition & 1 deletion base_layer/wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tari_wallet"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet library"
license = "BSD-3-Clause"
version = "0.2.11"
version = "0.2.12"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion base_layer/wallet_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tari_wallet_ffi"
authors = ["The Tari Development Community"]
description = "Tari cryptocurrency wallet C FFI bindings"
license = "BSD-3-Clause"
version = "0.16.9"
version = "0.16.10"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion 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.2.11"
version = "0.2.12"
edition = "2018"


Expand Down
2 changes: 1 addition & 1 deletion comms/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.2.11"
version = "0.2.12"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion comms/dht/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tari_comms_dht"
version = "0.2.11"
version = "0.2.12"
authors = ["The Tari Development Community"]
description = "Tari comms DHT module"
repository = "https://github.com/tari-project/tari"
Expand Down

0 comments on commit aad9a51

Please sign in to comment.