Skip to content

Commit

Permalink
Bump version to v3.1.1 (#3285)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaspervdm committed Mar 30, 2020
1 parent bfce2aa commit 2cfbb92
Show file tree
Hide file tree
Showing 12 changed files with 113 additions and 113 deletions.
112 changes: 56 additions & 56 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
@@ -1,6 +1,6 @@
[package]
name = "grin"
version = "3.1.1-beta.1"
version = "3.1.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -32,14 +32,14 @@ term = "0.5"
failure = "0.1"
failure_derive = "0.1"

grin_api = { path = "./api", version = "3.1.1-beta.1" }
grin_config = { path = "./config", version = "3.1.1-beta.1" }
grin_chain = { path = "./chain", version = "3.1.1-beta.1" }
grin_core = { path = "./core", version = "3.1.1-beta.1" }
grin_keychain = { path = "./keychain", version = "3.1.1-beta.1" }
grin_p2p = { path = "./p2p", version = "3.1.1-beta.1" }
grin_servers = { path = "./servers", version = "3.1.1-beta.1" }
grin_util = { path = "./util", version = "3.1.1-beta.1" }
grin_api = { path = "./api", version = "3.1.1" }
grin_config = { path = "./config", version = "3.1.1" }
grin_chain = { path = "./chain", version = "3.1.1" }
grin_core = { path = "./core", version = "3.1.1" }
grin_keychain = { path = "./keychain", version = "3.1.1" }
grin_p2p = { path = "./p2p", version = "3.1.1" }
grin_servers = { path = "./servers", version = "3.1.1" }
grin_util = { path = "./util", version = "3.1.1" }

[target.'cfg(windows)'.dependencies]
cursive = { version = "0.12", default-features = false, features = ["pancurses-backend"] }
Expand All @@ -53,5 +53,5 @@ cursive = "0.12"
built = "0.3"

[dev-dependencies]
grin_chain = { path = "./chain", version = "3.1.1-beta.1" }
grin_store = { path = "./store", version = "3.1.1-beta.1" }
grin_chain = { path = "./chain", version = "3.1.1" }
grin_store = { path = "./store", version = "3.1.1" }
14 changes: 7 additions & 7 deletions api/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grin_api"
version = "3.1.1-beta.1"
version = "3.1.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
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 @@ -31,9 +31,9 @@ rustls = "0.16"
url = "1.7.0"
bytes = "0.5"

grin_core = { path = "../core", version = "3.1.1-beta.1" }
grin_chain = { path = "../chain", version = "3.1.1-beta.1" }
grin_p2p = { path = "../p2p", version = "3.1.1-beta.1" }
grin_pool = { path = "../pool", version = "3.1.1-beta.1" }
grin_store = { path = "../store", version = "3.1.1-beta.1" }
grin_util = { path = "../util", version = "3.1.1-beta.1" }
grin_core = { path = "../core", version = "3.1.1" }
grin_chain = { path = "../chain", version = "3.1.1" }
grin_p2p = { path = "../p2p", version = "3.1.1" }
grin_pool = { path = "../pool", version = "3.1.1" }
grin_store = { path = "../store", version = "3.1.1" }
grin_util = { path = "../util", version = "3.1.1" }
10 changes: 5 additions & 5 deletions chain/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grin_chain"
version = "3.1.1-beta.1"
version = "3.1.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
license = "Apache-2.0"
Expand All @@ -23,10 +23,10 @@ chrono = "0.4.4"
lru-cache = "0.1"
lazy_static = "1"

grin_core = { path = "../core", version = "3.1.1-beta.1" }
grin_keychain = { path = "../keychain", version = "3.1.1-beta.1" }
grin_store = { path = "../store", version = "3.1.1-beta.1" }
grin_util = { path = "../util", version = "3.1.1-beta.1" }
grin_core = { path = "../core", version = "3.1.1" }
grin_keychain = { path = "../keychain", version = "3.1.1" }
grin_store = { path = "../store", version = "3.1.1" }
grin_util = { path = "../util", version = "3.1.1" }

[dev-dependencies]
env_logger = "0.5"
Expand Down
10 changes: 5 additions & 5 deletions config/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grin_config"
version = "3.1.1-beta.1"
version = "3.1.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Configuration for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
license = "Apache-2.0"
Expand All @@ -16,10 +16,10 @@ serde_derive = "1"
toml = "0.4"
dirs = "1.0.3"

grin_core = { path = "../core", version = "3.1.1-beta.1" }
grin_servers = { path = "../servers", version = "3.1.1-beta.1" }
grin_p2p = { path = "../p2p", version = "3.1.1-beta.1" }
grin_util = { path = "../util", version = "3.1.1-beta.1" }
grin_core = { path = "../core", version = "3.1.1" }
grin_servers = { path = "../servers", version = "3.1.1" }
grin_p2p = { path = "../p2p", version = "3.1.1" }
grin_util = { path = "../util", version = "3.1.1" }

[dev-dependencies]
pretty_assertions = "0.5.1"
6 changes: 3 additions & 3 deletions core/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grin_core"
version = "3.1.1-beta.1"
version = "3.1.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -28,8 +28,8 @@ log = "0.4"
chrono = { version = "0.4.4", features = ["serde"] }
zeroize = "0.9"

keychain = { package = "grin_keychain", path = "../keychain", version = "3.1.1-beta.1" }
util = { package = "grin_util", path = "../util", version = "3.1.1-beta.1" }
keychain = { package = "grin_keychain", path = "../keychain", version = "3.1.1" }
util = { package = "grin_util", path = "../util", version = "3.1.1" }

[dev-dependencies]
serde_json = "1"
4 changes: 2 additions & 2 deletions keychain/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grin_keychain"
version = "3.1.1-beta.1"
version = "3.1.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
license = "Apache-2.0"
Expand All @@ -26,4 +26,4 @@ ripemd160 = "0.7"
sha2 = "0.7"
pbkdf2 = "0.2"

grin_util = { path = "../util", version = "3.1.1-beta.1" }
grin_util = { path = "../util", version = "3.1.1" }

0 comments on commit 2cfbb92

Please sign in to comment.