summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Aaron Murphy <mmstickman@gmail.com>2016-08-27 02:06:44 -0400
committerMichael Aaron Murphy <mmstickman@gmail.com>2016-08-27 02:08:59 -0400
commit27aa95e9456af68b8384aa35d44fc4b7852f3e17 (patch)
treeee88720927d1e2a5578f5be33ba44c1a4b0b019e
parent32a76606c5e7f146754c0b2885a3f4a440e3f0a7 (diff)
0.1.0 Release0.1.0
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml4
-rw-r--r--README.md6
3 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 25302ab..dd091b5 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1,6 +1,6 @@
[root]
name = "parallel"
-version = "0.0.1"
+version = "0.1.0"
dependencies = [
"num_cpus 1.0.0",
]
diff --git a/Cargo.toml b/Cargo.toml
index 393c6fb..170b70d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "parallel"
-version = "0.0.1"
+version = "0.1.0"
authors = ["Michael Aaron Murphy <mmstickman@gmail.com>"]
license = "MIT"
description = "Command-line CPU load balancer for executing jobs in parallel"
@@ -9,7 +9,7 @@ keywords = ["cli", "parallel", "cpu", "load", "balancer"]
readme = "README.md"
[dependencies]
-num_cpus = { path = "deps/num_cpus" }
+num_cpus = { path = "deps/num_cpus", version = "1.0.0" }
[profile.release]
lto = true
diff --git a/README.md b/README.md
index 1b18a56..c350afb 100644
--- a/README.md
+++ b/README.md
@@ -108,14 +108,14 @@ that are available for download:
### Ubuntu
```sh
-wget https://github.com/mmstick/parallel/releases/download/0.0.1/parallel_0.0.1_amd64.deb
-sudo dpkg -i parallel_0.0.1_amd64.deb
+wget https://github.com/mmstick/parallel/releases/download/0.1.0/parallel_0.1.0_amd64.deb
+sudo dpkg -i parallel_0.1.0_amd64.deb
```
### Everyone Else
```sh
-wget https://github.com/mmstick/parallel/releases/download/0.0.1/parallel.tar.xz
+wget https://github.com/mmstick/parallel/releases/download/0.1.0/parallel.tar.xz
tar xf parallel.tar.xz
sudo install parallel /usr/local/bin
```