aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatharina Sabel <katharina.sabel@asquera.de>2018-05-11 17:24:25 +0200
committerKatharina Sabel <katharina.sabel@asquera.de>2018-05-11 17:24:25 +0200
commit4cacf3455aa1e908a57740499f846e58b25dc106 (patch)
treec353862599aa5a12c9d1fe41cb69ffb3c19f8195
parent77eba7ed3d105c44433f5302e14a7a1838ca014e (diff)
Adjusting version numbers across the ecosystem to bring them all to the same level
-rw-r--r--lockchain-client/Cargo.toml1
-rw-r--r--lockchain-core/Cargo.toml2
-rw-r--r--lockchain-crypto/Cargo.toml4
-rw-r--r--lockchain-files/Cargo.toml2
-rw-r--r--lockchain-http/Cargo.toml2
5 files changed, 6 insertions, 5 deletions
diff --git a/lockchain-client/Cargo.toml b/lockchain-client/Cargo.toml
index 9d658ba..fcda6c1 100644
--- a/lockchain-client/Cargo.toml
+++ b/lockchain-client/Cargo.toml
@@ -10,3 +10,4 @@ readme = "README.md"
license = "MIT/X11 OR Apache-2.0"
[dependencies]
+lockchain-core = { version = "0.7.0", path = "../lockchain-core", }
diff --git a/lockchain-core/Cargo.toml b/lockchain-core/Cargo.toml
index bdcf202..283751a 100644
--- a/lockchain-core/Cargo.toml
+++ b/lockchain-core/Cargo.toml
@@ -5,7 +5,7 @@ documentation = "https://docs.rs/lockchain-core"
homepage = "https://github.com/spacekookie/lockchain/tree/master/lockchain-core"
readme = "README.md"
license = "MIT/X11 OR Apache-2.0"
-version = "0.6.0"
+version = "0.7.0"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
[dependencies]
diff --git a/lockchain-crypto/Cargo.toml b/lockchain-crypto/Cargo.toml
index 6c2c12d..f56d9e7 100644
--- a/lockchain-crypto/Cargo.toml
+++ b/lockchain-crypto/Cargo.toml
@@ -5,11 +5,11 @@ documentation = "https://docs.rs/lockchain-crypto"
homepage = "https://github.com/spacekookie/lockchain/tree/master/lockchain-crypto"
readme = "README.md"
license = "MIT/X11 OR Apache-2.0"
-version = "0.3.0"
+version = "0.7.0"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
[dependencies]
-lockchain-core = { version = "0.5.0" } # path = "../lockchain-core", }
+lockchain-core = { version = "0.7.0", path = "../lockchain-core", }
serde_derive = "1.0"
serde = "1.0"
diff --git a/lockchain-files/Cargo.toml b/lockchain-files/Cargo.toml
index 8bf63f5..dc096d3 100644
--- a/lockchain-files/Cargo.toml
+++ b/lockchain-files/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "lockchain-files"
description = "Filesystem storage backend for lockchain vaults"
-version = "0.1.0"
+version = "0.6.0"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
documentation = "https://docs.rs/lockchain-files"
diff --git a/lockchain-http/Cargo.toml b/lockchain-http/Cargo.toml
index 8fca7d1..3f3567e 100644
--- a/lockchain-http/Cargo.toml
+++ b/lockchain-http/Cargo.toml
@@ -11,7 +11,7 @@ license = "MIT/X11 OR Apache-2.0"
[dependencies]
-lockchain-core = "<= 0.3.2"
+lockchain-core = { version = "0.7.0", path = "../lockchain-core", }
# Web stack
gotham = "0.2"