Skip to content

Commit

Permalink
Version bump to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ignopeverell committed Jan 15, 2019
1 parent 0510ba9 commit e7485ab
Show file tree
Hide file tree
Showing 16 changed files with 226 additions and 149 deletions.
132 changes: 66 additions & 66 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.2"
version = "1.0.0"
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.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" }
grin_api = { path = "./api", version = "1.0.0" }
grin_config = { path = "./config", version = "1.0.0" }
grin_core = { path = "./core", version = "1.0.0" }
grin_keychain = { path = "./keychain", version = "1.0.0" }
grin_p2p = { path = "./p2p", version = "1.0.0" }
grin_servers = { path = "./servers", version = "1.0.0" }
grin_util = { path = "./util", version = "1.0.0" }
grin_wallet = { path = "./wallet", version = "1.0.0" }

[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.2" }
grin_store = { path = "./store", version = "0.5.2" }
grin_chain = { path = "./chain", version = "1.0.0" }
grin_store = { path = "./store", version = "1.0.0" }
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.2"
version = "1.0.0"
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.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" }
grin_core = { path = "../core", version = "1.0.0" }
grin_chain = { path = "../chain", version = "1.0.0" }
grin_p2p = { path = "../p2p", version = "1.0.0" }
grin_pool = { path = "../pool", version = "1.0.0" }
grin_store = { path = "../store", version = "1.0.0" }
grin_util = { path = "../util", version = "1.0.0" }
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.2"
version = "1.0.0"
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.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" }
grin_core = { path = "../core", version = "1.0.0" }
grin_keychain = { path = "../keychain", version = "1.0.0" }
grin_store = { path = "../store", version = "1.0.0" }
grin_util = { path = "../util", version = "1.0.0" }

[dev-dependencies]
env_logger = "0.5"
Expand Down
12 changes: 6 additions & 6 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_config"
version = "0.5.2"
version = "1.0.0"
authors = ["Grin Developers <[email protected]>"]
description = "Configuration for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -16,11 +16,11 @@ serde_derive = "1"
toml = "0.4"
dirs = "1.0.3"

grin_core = { path = "../core", version = "0.5.2" }
grin_servers = { path = "../servers", version = "0.5.2" }
grin_p2p = { path = "../p2p", version = "0.5.2" }
grin_util = { path = "../util", version = "0.5.2" }
grin_wallet = { path = "../wallet", version = "0.5.2" }
grin_core = { path = "../core", version = "1.0.0" }
grin_servers = { path = "../servers", version = "1.0.0" }
grin_p2p = { path = "../p2p", version = "1.0.0" }
grin_util = { path = "../util", version = "1.0.0" }
grin_wallet = { path = "../wallet", version = "1.0.0" }

[dev-dependencies]
pretty_assertions = "0.5.1"
Loading

2 comments on commit e7485ab

@FelixWeis
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

😸🚀 🌕

@saltbo
Copy link

@saltbo saltbo commented on e7485ab Jan 15, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

launched

Please sign in to comment.