aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2018-06-13 12:22:10 +0200
committerKatharina Fey <kookie@spacekookie.de>2018-06-13 12:22:10 +0200
commit08adf3d4fe66991e1c01e012c78c65898367bda9 (patch)
tree91a973be4c5a530469cc7e32eea769f6b465f28b
parentf5615091071c2a4a969c1be9fe53e36fbda73c9a (diff)
Bumping version numbers collectively
-rw-r--r--Cargo.lock22
-rw-r--r--lockchain-core/Cargo.toml2
-rw-r--r--lockchain-crypto/Cargo.toml4
-rw-r--r--lockchain-files/Cargo.toml4
-rw-r--r--lockchain-http/Cargo.toml4
5 files changed, 18 insertions, 18 deletions
diff --git a/Cargo.lock b/Cargo.lock
index af85363..6330abb 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -801,12 +801,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
name = "lockchain-client"
version = "0.0.0"
dependencies = [
- "lockchain-core 0.8.1",
+ "lockchain-core 0.8.2",
]
[[package]]
name = "lockchain-core"
-version = "0.8.1"
+version = "0.8.2"
dependencies = [
"base64 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"bcrypt 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -820,9 +820,9 @@ dependencies = [
[[package]]
name = "lockchain-crypto"
-version = "0.7.0"
+version = "0.7.1"
dependencies = [
- "lockchain-core 0.8.1",
+ "lockchain-core 0.8.2",
"miscreant 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -830,20 +830,20 @@ dependencies = [
[[package]]
name = "lockchain-files"
-version = "0.7.1"
+version = "0.7.2"
dependencies = [
- "lockchain-core 0.8.1",
+ "lockchain-core 0.8.2",
]
[[package]]
name = "lockchain-http"
-version = "0.2.1"
+version = "0.3.0"
dependencies = [
"actix 0.5.8 (registry+https://github.com/rust-lang/crates.io-index)",
"actix-web 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)",
"env_logger 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)",
- "lockchain-core 0.8.1",
+ "lockchain-core 0.8.2",
"serde 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -854,9 +854,9 @@ version = "0.1.0"
dependencies = [
"clap 2.31.2 (registry+https://github.com/rust-lang/crates.io-index)",
"insult 2.0.3 (registry+https://github.com/rust-lang/crates.io-index)",
- "lockchain-core 0.8.1",
- "lockchain-files 0.7.1",
- "lockchain-http 0.2.1",
+ "lockchain-core 0.8.2",
+ "lockchain-files 0.7.2",
+ "lockchain-http 0.3.0",
]
[[package]]
diff --git a/lockchain-core/Cargo.toml b/lockchain-core/Cargo.toml
index 2f9bb89..5e181c8 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.8.1"
+version = "0.8.2"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
[dependencies]
diff --git a/lockchain-crypto/Cargo.toml b/lockchain-crypto/Cargo.toml
index b8b7077..6cc66e9 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.7.0"
+version = "0.7.1"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
[dependencies]
-lockchain-core = { version = "0.8.1", path = "../lockchain-core" }
+lockchain-core = { version = "0.8.2", path = "../lockchain-core" }
serde_derive = "1.0"
serde = "1.0"
diff --git a/lockchain-files/Cargo.toml b/lockchain-files/Cargo.toml
index 2f50822..4ae5f61 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.7.1"
+version = "0.7.2"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
documentation = "https://docs.rs/lockchain-files"
@@ -10,4 +10,4 @@ readme = "README.md"
license = "MIT/X11 OR Apache-2.0"
[dependencies]
-lockchain-core = { version = "0.8.1", path = "../lockchain-core" }
+lockchain-core = { version = "0.8.2", path = "../lockchain-core" }
diff --git a/lockchain-http/Cargo.toml b/lockchain-http/Cargo.toml
index 23794f0..19e1ae3 100644
--- a/lockchain-http/Cargo.toml
+++ b/lockchain-http/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "lockchain-http"
description = "Generic HTTP interface crate for the lockchain ecosystem. Can serve both encrypted and cleartext records"
-version = "0.2.1"
+version = "0.3.0"
authors = ["Katharina Fey <kookie@spacekookie.de>"]
documentation = "https://docs.rs/lockchain-http"
@@ -11,7 +11,7 @@ license = "MIT/X11 OR Apache-2.0"
[dependencies]
-lockchain-core = { version = "0.8.1", path = "../lockchain-core" }
+lockchain-core = { version = "0.8.2", path = "../lockchain-core" }
env_logger = "0.5"
# Serialisation stack