Skip to content

Commit

Permalink
Bump version to 0.5.2 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ignopeverell committed Jan 11, 2019
1 parent 5cf4d7a commit 60d3ee3
Show file tree
Hide file tree
Showing 16 changed files with 143 additions and 144 deletions.
139 changes: 69 additions & 70 deletions Cargo.lock

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

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin"
version = "0.5.1"
version = "0.5.2"
authors = ["Grin Developers <[email protected]>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -36,14 +36,14 @@ linefeed = "0.5"
failure = "0.1"
failure_derive = "0.1"

grin_api = { path = "./api", version = "0.5.1" }
grin_config = { path = "./config", version = "0.5.1" }
grin_core = { path = "./core", version = "0.5.1" }
grin_keychain = { path = "./keychain", version = "0.5.1" }
grin_p2p = { path = "./p2p", version = "0.5.1" }
grin_servers = { path = "./servers", version = "0.5.1" }
grin_util = { path = "./util", version = "0.5.1" }
grin_wallet = { path = "./wallet", version = "0.5.1" }
grin_api = { path = "./api", version = "0.5.2" }
grin_config = { path = "./config", version = "0.5.2" }
grin_core = { path = "./core", version = "0.5.2" }
grin_keychain = { path = "./keychain", version = "0.5.2" }
grin_p2p = { path = "./p2p", version = "0.5.2" }
grin_servers = { path = "./servers", version = "0.5.2" }
grin_util = { path = "./util", version = "0.5.2" }
grin_wallet = { path = "./wallet", version = "0.5.2" }

[build-dependencies]
built = "0.3"
Expand All @@ -52,5 +52,5 @@ flate2 = "1.0"
tar = "0.4"

[dev-dependencies]
grin_chain = { path = "./chain", version = "0.5.1" }
grin_store = { path = "./store", version = "0.5.1" }
grin_chain = { path = "./chain", version = "0.5.2" }
grin_store = { path = "./store", version = "0.5.2" }
14 changes: 7 additions & 7 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_api"
version = "0.5.1"
version = "0.5.2"
authors = ["Grin Developers <[email protected]>"]
description = "APIs for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -30,9 +30,9 @@ futures = "0.1.21"
rustls = "0.13"
url = "1.7.0"

grin_core = { path = "../core", version = "0.5.1" }
grin_chain = { path = "../chain", version = "0.5.1" }
grin_p2p = { path = "../p2p", version = "0.5.1" }
grin_pool = { path = "../pool", version = "0.5.1" }
grin_store = { path = "../store", version = "0.5.1" }
grin_util = { path = "../util", version = "0.5.1" }
grin_core = { path = "../core", version = "0.5.2" }
grin_chain = { path = "../chain", version = "0.5.2" }
grin_p2p = { path = "../p2p", version = "0.5.2" }
grin_pool = { path = "../pool", version = "0.5.2" }
grin_store = { path = "../store", version = "0.5.2" }
grin_util = { path = "../util", version = "0.5.2" }
10 changes: 5 additions & 5 deletions chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_chain"
version = "0.5.1"
version = "0.5.2"
authors = ["Grin Developers <[email protected]>"]
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -22,10 +22,10 @@ serde_derive = "1"
chrono = "0.4.4"
lru-cache = "0.1"

grin_core = { path = "../core", version = "0.5.1" }
grin_keychain = { path = "../keychain", version = "0.5.1" }
grin_store = { path = "../store", version = "0.5.1" }
grin_util = { path = "../util", version = "0.5.1" }
grin_core = { path = "../core", version = "0.5.2" }
grin_keychain = { path = "../keychain", version = "0.5.2" }
grin_store = { path = "../store", version = "0.5.2" }
grin_util = { path = "../util", version = "0.5.2" }

[dev-dependencies]
env_logger = "0.5"
Expand Down
Loading

0 comments on commit 60d3ee3

Please sign in to comment.