Skip to content

Commit

Permalink
update version numbers for build
Browse files Browse the repository at this point in the history
  • Loading branch information
yeastplume committed Mar 21, 2022
1 parent fa39fca commit ff878c4
Show file tree
Hide file tree
Showing 8 changed files with 71 additions and 63 deletions.
54 changes: 31 additions & 23 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet"
version = "5.1.0-alpha.1"
version = "5.1.0"
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 @@ -31,13 +31,13 @@ semver = "0.10"
rustyline = "6"
lazy_static = "1"

grin_wallet_api = { path = "./api", version = "5.1.0-alpha.1" }
grin_wallet_impls = { path = "./impls", version = "5.1.0-alpha.1" }
grin_wallet_libwallet = { path = "./libwallet", version = "5.1.0-alpha.1" }
grin_wallet_controller = { path = "./controller", version = "5.1.0-alpha.1" }
grin_wallet_config = { path = "./config", version = "5.1.0-alpha.1" }
grin_wallet_api = { path = "./api", version = "5.1.0" }
grin_wallet_impls = { path = "./impls", version = "5.1.0" }
grin_wallet_libwallet = { path = "./libwallet", version = "5.1.0" }
grin_wallet_controller = { path = "./controller", version = "5.1.0" }
grin_wallet_config = { path = "./config", version = "5.1.0" }

grin_wallet_util = { path = "./util", version = "5.1.0-alpha.1" }
grin_wallet_util = { path = "./util", version = "5.1.0" }

[build-dependencies]
built = { version = "0.4", features = ["git2"]}
Expand Down
10 changes: 5 additions & 5 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_api"
version = "5.1.0-alpha.1"
version = "5.1.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Grin Wallet API"
license = "Apache-2.0"
Expand All @@ -24,10 +24,10 @@ ring = "0.16"
base64 = "0.12"
ed25519-dalek = "1.0.0-pre.4"

grin_wallet_libwallet = { path = "../libwallet", version = "5.1.0-alpha.1" }
grin_wallet_config = { path = "../config", version = "5.1.0-alpha.1" }
grin_wallet_impls = { path = "../impls", version = "5.1.0-alpha.1" }
grin_wallet_util = { path = "../util", version = "5.1.0-alpha.1" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.1.0" }
grin_wallet_config = { path = "../config", version = "5.1.0" }
grin_wallet_impls = { path = "../impls", version = "5.1.0" }
grin_wallet_util = { path = "../util", version = "5.1.0" }

[dev-dependencies]
serde_json = "1"
Expand Down
4 changes: 2 additions & 2 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_config"
version = "5.1.0-alpha.1"
version = "5.1.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -16,7 +16,7 @@ serde_derive = "1"
toml = "0.5"
dirs = "2.0"

grin_wallet_util = { path = "../util", version = "5.1.0-alpha.1" }
grin_wallet_util = { path = "../util", version = "5.1.0" }

[dev-dependencies]
pretty_assertions = "0.6"
12 changes: 6 additions & 6 deletions controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_controller"
version = "5.1.0-alpha.1"
version = "5.1.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Controllers for grin wallet instantiation"
license = "Apache-2.0"
Expand Down Expand Up @@ -30,12 +30,12 @@ chrono = { version = "0.4.11", features = ["serde"] }
easy-jsonrpc-mw = "0.5.4"
lazy_static = "1"

grin_wallet_util = { path = "../util", version = "5.1.0-alpha.1" }
grin_wallet_util = { path = "../util", version = "5.1.0" }

grin_wallet_api = { path = "../api", version = "5.1.0-alpha.1" }
grin_wallet_impls = { path = "../impls", version = "5.1.0-alpha.1" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.1.0-alpha.1" }
grin_wallet_config = { path = "../config", version = "5.1.0-alpha.1" }
grin_wallet_api = { path = "../api", version = "5.1.0" }
grin_wallet_impls = { path = "../impls", version = "5.1.0" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.1.0" }
grin_wallet_config = { path = "../config", version = "5.1.0" }

[dev-dependencies]
ed25519-dalek = "1.0.0-pre.4"
Expand Down
8 changes: 4 additions & 4 deletions impls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_impls"
version = "5.1.0-alpha.1"
version = "5.1.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Concrete types derived from libwallet traits"
license = "Apache-2.0"
Expand Down Expand Up @@ -37,9 +37,9 @@ sysinfo = "0.14"
base64 = "0.12.0"
url = "2.1"

grin_wallet_util = { path = "../util", version = "5.1.0-alpha.1" }
grin_wallet_config = { path = "../config", version = "5.1.0-alpha.1" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.1.0-alpha.1" }
grin_wallet_util = { path = "../util", version = "5.1.0" }
grin_wallet_config = { path = "../config", version = "5.1.0" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.1.0" }

[dev-dependencies]
"remove_dir_all" = "0.7"
6 changes: 3 additions & 3 deletions libwallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_libwallet"
version = "5.1.0-alpha.1"
version = "5.1.0"
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 @@ -36,6 +36,6 @@ secrecy = "0.6"
bech32 = "0.7"
byteorder = "1.3"

grin_wallet_util = { path = "../util", version = "5.1.0-alpha.1" }
grin_wallet_config = { path = "../config", version = "5.1.0-alpha.1" }
grin_wallet_util = { path = "../util", version = "5.1.0" }
grin_wallet_config = { path = "../config", version = "5.1.0" }

26 changes: 13 additions & 13 deletions util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_util"
version = "5.1.0-alpha.1"
version = "5.1.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Util, for generic utilities and to re-export grin crates"
license = "Apache-2.0"
Expand All @@ -18,12 +18,12 @@ data-encoding = "2"
sha3 = "0.8"

# For Release
#grin_core = "4.0.0"
#grin_keychain = "4.0.0"
#grin_chain = "4.0.0"
#grin_util = "4.0.0"
#grin_api = "4.0.0"
#grin_store = "4.0.0"
grin_core = "5.1.2"
grin_keychain = "5.1.2"
grin_chain = "5.1.2"
grin_util = "5.1.2"
grin_api = "5.1.2"
grin_store = "5.1.2"

# For beta release

Expand All @@ -35,12 +35,12 @@ sha3 = "0.8"
# grin_store = { git = "https://github.com/mimblewimble/grin", tag = "v5.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"}
Expand Down

0 comments on commit ff878c4

Please sign in to comment.