forked from mimblewimble/grin-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update version number for next potential release
- Loading branch information
1 parent
c12f61d
commit f7c17c4
Showing
8 changed files
with
121 additions
and
121 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_wallet" | ||
version = "2.0.0" | ||
version = "2.0.1-beta.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -30,13 +30,13 @@ log = "0.4" | |
linefeed = "0.5" | ||
semver = "0.9" | ||
|
||
grin_wallet_api = { path = "./api", version = "2.0.0" } | ||
grin_wallet_impls = { path = "./impls", version = "2.0.0" } | ||
grin_wallet_libwallet = { path = "./libwallet", version = "2.0.0" } | ||
grin_wallet_controller = { path = "./controller", version = "2.0.0" } | ||
grin_wallet_config = { path = "./config", version = "2.0.0" } | ||
grin_wallet_api = { path = "./api", version = "2.0.1-beta.1" } | ||
grin_wallet_impls = { path = "./impls", version = "2.0.1-beta.1" } | ||
grin_wallet_libwallet = { path = "./libwallet", version = "2.0.1-beta.1" } | ||
grin_wallet_controller = { path = "./controller", version = "2.0.1-beta.1" } | ||
grin_wallet_config = { path = "./config", version = "2.0.1-beta.1" } | ||
|
||
grin_wallet_util = { path = "./util", version = "2.0.0" } | ||
grin_wallet_util = { path = "./util", version = "2.0.1-beta.1" } | ||
|
||
[build-dependencies] | ||
built = "0.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_wallet_api" | ||
version = "2.0.0" | ||
version = "2.0.1-beta.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Grin Wallet API" | ||
license = "Apache-2.0" | ||
|
@@ -18,10 +18,10 @@ serde_json = "1" | |
easy-jsonrpc = "0.5.1" | ||
chrono = { version = "0.4.4", features = ["serde"] } | ||
|
||
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.0" } | ||
grin_wallet_config = { path = "../config", version = "2.0.0" } | ||
grin_wallet_impls = { path = "../impls", version = "2.0.0" } | ||
grin_wallet_util = { path = "../util", version = "2.0.0" } | ||
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.1" } | ||
grin_wallet_config = { path = "../config", version = "2.0.1-beta.1" } | ||
grin_wallet_impls = { path = "../impls", version = "2.0.1-beta.1" } | ||
grin_wallet_util = { path = "../util", version = "2.0.1-beta.1" } | ||
|
||
[dev-dependencies] | ||
serde_json = "1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_wallet_config" | ||
version = "2.0.0" | ||
version = "2.0.1-beta.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -16,7 +16,7 @@ serde_derive = "1" | |
toml = "0.4" | ||
dirs = "1.0.3" | ||
|
||
grin_wallet_util = { path = "../util", version = "2.0.0" } | ||
grin_wallet_util = { path = "../util", version = "2.0.1-beta.1" } | ||
|
||
[dev-dependencies] | ||
pretty_assertions = "0.5.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_wallet_controller" | ||
version = "2.0.0" | ||
version = "2.0.1-beta.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Controllers for grin wallet instantiation" | ||
license = "Apache-2.0" | ||
|
@@ -32,9 +32,9 @@ chrono = { version = "0.4.4", features = ["serde"] } | |
easy-jsonrpc = "0.5.1" | ||
lazy_static = "1" | ||
|
||
grin_wallet_util = { path = "../util", version = "2.0.0" } | ||
grin_wallet_util = { path = "../util", version = "2.0.1-beta.1" } | ||
|
||
grin_wallet_api = { path = "../api", version = "2.0.0" } | ||
grin_wallet_impls = { path = "../impls", version = "2.0.0" } | ||
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.0" } | ||
grin_wallet_config = { path = "../config", version = "2.0.0" } | ||
grin_wallet_api = { path = "../api", version = "2.0.1-beta.1" } | ||
grin_wallet_impls = { path = "../impls", version = "2.0.1-beta.1" } | ||
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.1" } | ||
grin_wallet_config = { path = "../config", version = "2.0.1-beta.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_wallet_impls" | ||
version = "2.0.0" | ||
version = "2.0.1-beta.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Concrete types derived from libwallet traits" | ||
license = "Apache-2.0" | ||
|
@@ -26,7 +26,7 @@ tokio-retry = "0.1" | |
uuid = { version = "0.7", features = ["serde", "v4"] } | ||
chrono = { version = "0.4.4", features = ["serde"] } | ||
|
||
grin_wallet_util = { path = "../util", version = "2.0.0" } | ||
grin_wallet_util = { path = "../util", version = "2.0.1-beta.1" } | ||
|
||
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.0" } | ||
grin_wallet_config = { path = "../config", version = "2.0.0" } | ||
grin_wallet_libwallet = { path = "../libwallet", version = "2.0.1-beta.1" } | ||
grin_wallet_config = { path = "../config", version = "2.0.1-beta.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_wallet_libwallet" | ||
version = "2.0.0" | ||
version = "2.0.1-beta.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format." | ||
license = "Apache-2.0" | ||
|
@@ -25,7 +25,7 @@ lazy_static = "1" | |
strum = "0.15" | ||
strum_macros = "0.15" | ||
|
||
grin_wallet_util = { path = "../util", version = "2.0.0" } | ||
grin_wallet_util = { path = "../util", version = "2.0.1-beta.1" } | ||
|
||
[dev-dependencies] | ||
grin_wallet_config = { path = "../config", version = "2.0.0" } | ||
grin_wallet_config = { path = "../config", version = "2.0.1-beta.1" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "grin_wallet_util" | ||
version = "2.0.0" | ||
version = "2.0.1-beta.1" | ||
authors = ["Grin Developers <[email protected]>"] | ||
description = "Util, for generic utilities and to re-export grin crates" | ||
license = "Apache-2.0" | ||
|
@@ -17,12 +17,12 @@ toml = "0.4" | |
dirs = "1.0.3" | ||
|
||
# For Release | ||
grin_core = "2.0.0" | ||
grin_keychain = "2.0.0" | ||
grin_chain = "2.0.0" | ||
grin_util = "2.0.0" | ||
grin_api = "2.0.0" | ||
grin_store = "2.0.0" | ||
# grin_core = "2.0.0" | ||
# grin_keychain = "2.0.0" | ||
# grin_chain = "2.0.0" | ||
# grin_util = "2.0.0" | ||
# grin_api = "2.0.0" | ||
# grin_store = "2.0.0" | ||
|
||
# For beta release | ||
# grin_core = { git = "https://github.com/mimblewimble/grin", tag = "2.0.0-beta.2" } | ||
|
@@ -33,12 +33,12 @@ grin_store = "2.0.0" | |
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "2.0.0-beta.2" } | ||
|
||
# For bleeding edge | ||
# grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
# grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
# grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
# grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
# grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
# grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
grin_core = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
grin_keychain = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
grin_chain = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
grin_util = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
grin_api = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
grin_store = { git = "https://github.com/mimblewimble/grin", branch = "master" } | ||
|
||
# For local testing | ||
#grin_core = { path = "../../grin/core", version= "2.0.0-beta.2"} | ||
|