Skip to content

Commit

Permalink
bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
yeastplume committed Jan 16, 2019
1 parent f07db06 commit 8669c24
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 41 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grin_miner"
version = "1.0.0"
version = "1.0.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Mining software for Grin, supports CPU and CUDA GPUs."
build = "src/build/build.rs"
Expand Down Expand Up @@ -32,14 +32,14 @@ slog = { version = "~2.1", features = ["max_level_trace", "release_max_level_tra
term = "0.4"
time = "0.1"

grin_miner_util = { path = "./util", version = "1.0.0" }
grin_miner_plugin = { path = "./plugin", version = "1.0.0" }
grin_miner_config = { path = "./config", version = "1.0.0" }
cuckoo_miner = { path = "./cuckoo-miner", version = "1.0.0" }
grin_miner_util = { path = "./util", version = "1.0.1" }
grin_miner_plugin = { path = "./plugin", version = "1.0.1" }
grin_miner_config = { path = "./config", version = "1.0.1" }
cuckoo_miner = { path = "./cuckoo-miner", version = "1.0.1" }
#use this alternative inclusion below to build cuda plugins
#cuckoo_miner = { path = "./cuckoo-miner", version = "1.0.0", features = ["build-cuda-plugins"]}
ocl_cuckatoo = { path = "./ocl_cuckatoo", version = "1.0.0", optional = true}
ocl_cuckaroo = { path = "./ocl_cuckaroo", version = "1.0.0", optional = true}
#cuckoo_miner = { path = "./cuckoo-miner", version = "1.0.1", features = ["build-cuda-plugins"]}
ocl_cuckatoo = { path = "./ocl_cuckatoo", version = "1.0.1", optional = true}
ocl_cuckaroo = { path = "./ocl_cuckaroo", version = "1.0.1", optional = true}

[dependencies.cursive]
version = "0.9.0"
Expand Down
6 changes: 3 additions & 3 deletions config/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grin_miner_config"
version = "1.0.0"
version = "1.0.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Configuration handling for the grin miner"
license = "Apache-2.0"
Expand All @@ -13,6 +13,6 @@ serde_derive = "1"
toml = "0.4"
dirs = "1.0"

cuckoo_miner = { path = "../cuckoo-miner", version = "1.0.0" }
cuckoo_miner = { path = "../cuckoo-miner", version = "1.0.1" }
slog = { version = "~2.1", features = ["max_level_trace", "release_max_level_trace"] }
grin_miner_util = { path = "../util", version = "1.0.0" }
grin_miner_util = { path = "../util", version = "1.0.1" }
6 changes: 3 additions & 3 deletions cuckoo-miner/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cuckoo_miner"
version = "1.0.0"
version = "1.0.1"
authors = ["yeastplume"]
license = "MIT/Apache-2.0/BSD-3-Clause"
description = "Rust bindings to John Tromp's Cuckoo Cycle Implementations"
Expand All @@ -18,8 +18,8 @@ test-avx2 = []
build-cuda-plugins = []

[dependencies]
grin_miner_util = { path = "../util", version = "1.0.0" }
grin_miner_plugin = { path = "../plugin", version = "1.0.0" }
grin_miner_util = { path = "../util", version = "1.0.1" }
grin_miner_plugin = { path = "../plugin", version = "1.0.1" }
time = "^0.1"
rust-crypto = "0.2.36"
log = "^0.3"
Expand Down
4 changes: 2 additions & 2 deletions grin-miner.toml
Expand Up @@ -77,9 +77,9 @@ stratum_server_tls_enabled = false
# The fastest cpu algorithm, but consumes the most memory

[[mining.miner_plugin_config]]
plugin_name = "cuckaroo_cpu_compat_29"
plugin_name = "cuckaroo_cpu_avx2_29"
[mining.miner_plugin_config.parameters]
nthreads = 1
nthreads = 4

# As above, but for processors supporting avx2

Expand Down
4 changes: 2 additions & 2 deletions ocl_cuckaroo/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ocl_cuckaroo"
version = "1.0.0"
version = "1.0.1"
workspace = ".."
edition = "2018"

Expand All @@ -9,7 +9,7 @@ profile = []


[dependencies]
grin_miner_plugin = { path = "../plugin", version = "1.0.0" }
grin_miner_plugin = { path = "../plugin", version = "1.0.1" }
ocl = "0.19"
hashbrown = "0.1"
libc = "0.2.24"
Expand Down
4 changes: 2 additions & 2 deletions ocl_cuckatoo/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "ocl_cuckatoo"
version = "1.0.0"
version = "1.0.1"
workspace = ".."

[dependencies]
grin_miner_plugin = { path = "../plugin", version = "1.0.0" }
grin_miner_plugin = { path = "../plugin", version = "1.0.1" }
ocl = "0.19"
hashbrown = "0.1"
libc = "0.2.24"
Expand Down
2 changes: 1 addition & 1 deletion plugin/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grin_miner_plugin"
version = "1.0.0"
version = "1.0.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
repository = "https://github.com/mimblewimble/grin-miner"
description = "Device specific plugins for the grin miner"
Expand Down
2 changes: 1 addition & 1 deletion util/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "grin_miner_util"
version = "1.0.0"
version = "1.0.1"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
description = "Utilities for the grin miner"
repository = "https://github.com/mimblewimble/grin-miner"
Expand Down

0 comments on commit 8669c24

Please sign in to comment.