Skip to content

Commit

Permalink
HF Update v2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pharazen committed Feb 9, 2020
1 parent b0b0a05 commit 2e93d05
Show file tree
Hide file tree
Showing 10 changed files with 117 additions and 120 deletions.
152 changes: 68 additions & 84 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitgrin_wallet"
version = "2.0.3"
version = "2.0.5"
authors = ["Bitgrin Developers <bitgrin@protonmail.com>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -32,13 +32,13 @@ log = "0.4"
linefeed = "0.5"
semver = "0.9"

bitgrin_wallet_api = { path = "./api", version = "2.0.0" }
bitgrin_wallet_impls = { path = "./impls", version = "2.0.0" }
bitgrin_wallet_libwallet = { path = "./libwallet", version = "2.0.0" }
bitgrin_wallet_controller = { path = "./controller", version = "2.0.0" }
bitgrin_wallet_config = { path = "./config", version = "2.0.0" }
bitgrin_wallet_api = { path = "./api", version = "2.0.5" }
bitgrin_wallet_impls = { path = "./impls", version = "2.0.5" }
bitgrin_wallet_libwallet = { path = "./libwallet", version = "2.0.5" }
bitgrin_wallet_controller = { path = "./controller", version = "2.0.5" }
bitgrin_wallet_config = { path = "./config", version = "2.0.5" }

bitgrin_wallet_util = { path = "./util", version = "2.0.0" }
bitgrin_wallet_util = { path = "./util", version = "2.0.5" }

[build-dependencies]
built = "0.3"
10 changes: 5 additions & 5 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitgrin_wallet_api"
version = "2.0.0"
version = "2.0.5"
authors = ["Bitgrin Developers <bitgrin@protonmail.com>"]
description = "Bitgrin Wallet API"
license = "Apache-2.0"
Expand All @@ -18,10 +18,10 @@ serde_json = "1"
easy-jsonrpc = "0.5.1"
chrono = { version = "0.4.4", features = ["serde"] }

bitgrin_wallet_libwallet = { path = "../libwallet", version = "2.0.2" }
bitgrin_wallet_config = { path = "../config", version = "2.0.0" }
bitgrin_wallet_impls = { path = "../impls", version = "2.0.0" }
bitgrin_wallet_util = { path = "../util", version = "2.0.0" }
bitgrin_wallet_libwallet = { path = "../libwallet", version = "2.0.5" }
bitgrin_wallet_config = { path = "../config", version = "2.0.5" }
bitgrin_wallet_impls = { path = "../impls", version = "2.0.5" }
bitgrin_wallet_util = { path = "../util", version = "2.0.5" }

[dev-dependencies]
serde_json = "1"
Expand Down
4 changes: 2 additions & 2 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitgrin_wallet_config"
version = "2.0.0"
version = "2.0.5"
authors = ["Bitgrin Developers <bitgrin@protonmail.com>"]
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -16,7 +16,7 @@ serde_derive = "1"
toml = "0.4"
dirs = "1.0.3"

bitgrin_wallet_util = { path = "../util", version = "2.0.0" }
bitgrin_wallet_util = { path = "../util", version = "2.0.5" }

[dev-dependencies]
pretty_assertions = "0.5.1"
12 changes: 6 additions & 6 deletions controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitgrin_wallet_controller"
version = "2.0.0"
version = "2.0.5"
authors = ["Bitgrin Developers <bitgrin@protonmail.com>"]
description = "Controllers for grin wallet instantiation"
license = "Apache-2.0"
Expand Down Expand Up @@ -32,9 +32,9 @@ chrono = { version = "0.4.4", features = ["serde"] }
easy-jsonrpc = "0.5.1"
lazy_static = "1"

bitgrin_wallet_util = { path = "../util", version = "2.0.0" }
bitgrin_wallet_util = { path = "../util", version = "2.0.5" }

bitgrin_wallet_api = { path = "../api", version = "2.0.0" }
bitgrin_wallet_impls = { path = "../impls", version = "2.0.0" }
bitgrin_wallet_libwallet = { path = "../libwallet", version = "2.0.2" }
bitgrin_wallet_config = { path = "../config", version = "2.0.0" }
bitgrin_wallet_api = { path = "../api", version = "2.0.5" }
bitgrin_wallet_impls = { path = "../impls", version = "2.0.5" }
bitgrin_wallet_libwallet = { path = "../libwallet", version = "2.0.5" }
bitgrin_wallet_config = { path = "../config", version = "2.0.5" }
8 changes: 7 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
bitgrin-wallet (2.0.2) bionic; urgency=medium
bitgrin-wallet (2.0.2) bionic; urgency=high

* Update for hard fork

-- pharazen <pharazen@protonmail.com> Sun, 09 Feb 2020 11:10:05 -05000

bitgrin-wallet (2.0.2) bionic; urgency=medium

* Initial release.

Expand Down
8 changes: 4 additions & 4 deletions impls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitgrin_wallet_impls"
version = "2.0.0"
version = "2.0.5"
authors = ["Bitgrin Developers <bitgrin@protonmail.com>"]
description = "Concrete types derived from libwallet traits"
license = "Apache-2.0"
Expand All @@ -26,7 +26,7 @@ tokio-retry = "0.1"
uuid = { version = "0.7", features = ["serde", "v4"] }
chrono = { version = "0.4.4", features = ["serde"] }

bitgrin_wallet_util = { path = "../util", version = "2.0.0" }
bitgrin_wallet_util = { path = "../util", version = "2.0.5" }

bitgrin_wallet_libwallet = { path = "../libwallet", version = "2.0.2" }
bitgrin_wallet_config = { path = "../config", version = "2.0.0" }
bitgrin_wallet_libwallet = { path = "../libwallet", version = "2.0.5" }
bitgrin_wallet_config = { path = "../config", version = "2.0.5" }
Loading

0 comments on commit 2e93d05

Please sign in to comment.