Skip to content

Commit

Permalink
Version bump for beta.1 (#3159)
Browse files Browse the repository at this point in the history
  • Loading branch information
yeastplume committed Dec 6, 2019
1 parent cdb2d6c commit 6a54334
Show file tree
Hide file tree
Showing 12 changed files with 115 additions and 115 deletions.
114 changes: 57 additions & 57 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 = "3.0.0-alpha.1"
version = "3.0.0-beta.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.0.0-alpha.1" }
grin_config = { path = "./config", version = "3.0.0-alpha.1" }
grin_chain = { path = "./chain", version = "3.0.0-alpha.1" }
grin_core = { path = "./core", version = "3.0.0-alpha.1" }
grin_keychain = { path = "./keychain", version = "3.0.0-alpha.1" }
grin_p2p = { path = "./p2p", version = "3.0.0-alpha.1" }
grin_servers = { path = "./servers", version = "3.0.0-alpha.1" }
grin_util = { path = "./util", version = "3.0.0-alpha.1" }
grin_api = { path = "./api", version = "3.0.0-beta.1" }
grin_config = { path = "./config", version = "3.0.0-beta.1" }
grin_chain = { path = "./chain", version = "3.0.0-beta.1" }
grin_core = { path = "./core", version = "3.0.0-beta.1" }
grin_keychain = { path = "./keychain", version = "3.0.0-beta.1" }
grin_p2p = { path = "./p2p", version = "3.0.0-beta.1" }
grin_servers = { path = "./servers", version = "3.0.0-beta.1" }
grin_util = { path = "./util", version = "3.0.0-beta.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.0.0-alpha.1" }
grin_store = { path = "./store", version = "3.0.0-alpha.1" }
grin_chain = { path = "./chain", version = "3.0.0-beta.1" }
grin_store = { path = "./store", version = "3.0.0-beta.1" }
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 = "3.0.0-alpha.1"
version = "3.0.0-beta.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 @@ -32,9 +32,9 @@ futures = "0.1.21"
rustls = "0.13"
url = "1.7.0"

grin_core = { path = "../core", version = "3.0.0-alpha.1" }
grin_chain = { path = "../chain", version = "3.0.0-alpha.1" }
grin_p2p = { path = "../p2p", version = "3.0.0-alpha.1" }
grin_pool = { path = "../pool", version = "3.0.0-alpha.1" }
grin_store = { path = "../store", version = "3.0.0-alpha.1" }
grin_util = { path = "../util", version = "3.0.0-alpha.1" }
grin_core = { path = "../core", version = "3.0.0-beta.1" }
grin_chain = { path = "../chain", version = "3.0.0-beta.1" }
grin_p2p = { path = "../p2p", version = "3.0.0-beta.1" }
grin_pool = { path = "../pool", version = "3.0.0-beta.1" }
grin_store = { path = "../store", version = "3.0.0-beta.1" }
grin_util = { path = "../util", version = "3.0.0-beta.1" }
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 = "3.0.0-alpha.1"
version = "3.0.0-beta.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 @@ -24,10 +24,10 @@ lru-cache = "0.1"
lazy_static = "1"
regex = "1"

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

[dev-dependencies]
env_logger = "0.5"
Expand Down
10 changes: 5 additions & 5 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_config"
version = "3.0.0-alpha.1"
version = "3.0.0-beta.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.0.0-alpha.1" }
grin_servers = { path = "../servers", version = "3.0.0-alpha.1" }
grin_p2p = { path = "../p2p", version = "3.0.0-alpha.1" }
grin_util = { path = "../util", version = "3.0.0-alpha.1" }
grin_core = { path = "../core", version = "3.0.0-beta.1" }
grin_servers = { path = "../servers", version = "3.0.0-beta.1" }
grin_p2p = { path = "../p2p", version = "3.0.0-beta.1" }
grin_util = { path = "../util", version = "3.0.0-beta.1" }

[dev-dependencies]
pretty_assertions = "0.5.1"
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_core"
version = "3.0.0-alpha.1"
version = "3.0.0-beta.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 @@ -29,8 +29,8 @@ log = "0.4"
chrono = { version = "0.4.4", features = ["serde"] }
zeroize = "0.9"

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

[dev-dependencies]
serde_json = "1"
4 changes: 2 additions & 2 deletions keychain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_keychain"
version = "3.0.0-alpha.1"
version = "3.0.0-beta.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 @@ -27,4 +27,4 @@ ripemd160 = "0.7"
sha2 = "0.7"
pbkdf2 = "0.2"

grin_util = { path = "../util", version = "3.0.0-alpha.1" }
grin_util = { path = "../util", version = "3.0.0-beta.1" }
Loading

0 comments on commit 6a54334

Please sign in to comment.