summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-11-26 22:42:51 +0100
committerJustus Winter <justus@sequoia-pgp.org>2018-11-26 23:52:38 +0100
commit4d60255edcc890ae0a57a1000140c5a9f50aec7e (patch)
tree6778360aa526b6930e0e5add7a16f4e1943fab4d
parenta42eaff55489407082a794310abb38c7cc720af3 (diff)
Release 0.2.0.v0.2.0
-rw-r--r--Cargo.toml18
-rw-r--r--buffered-reader/Cargo.toml2
-rw-r--r--core/Cargo.toml2
-rw-r--r--ffi/Cargo.toml2
-rw-r--r--net/Cargo.toml2
-rw-r--r--openpgp/Cargo.toml4
-rw-r--r--sqv/Cargo.toml6
-rw-r--r--store/Cargo.toml2
-rw-r--r--tool/Cargo.toml2
9 files changed, 20 insertions, 20 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a6d68c6f..dc6d3126 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "sequoia"
description = "A cool new OpenPGP implementation"
-version = "0.1.0"
+version = "0.2.0"
authors = [
"Justus Winter <justus@sequoia-pgp.org>",
"Kai Michaelis <kai@sequoia-pgp.org>",
@@ -22,14 +22,14 @@ maintenance = { status = "actively-developed" }
[workspace]
[dependencies]
-buffered-reader = { path = "buffered-reader", version = "0.1.0" }
-sequoia-openpgp = { path = "openpgp", version = "0.1.0" }
-sequoia-core = { path = "core", version = "0.1.0" }
-sequoia-ffi = { path = "ffi", version = "0.1.0" }
-sequoia-net = { path = "net", version = "0.1.0" }
-sequoia-store = { path = "store", version = "0.1.0" }
-sequoia-tool = { path = "tool", version = "0.1.0" }
-sequoia-sqv = { path = "sqv", version = "0.1.0" }
+buffered-reader = { path = "buffered-reader", version = "0.2.0" }
+sequoia-openpgp = { path = "openpgp", version = "0.2.0" }
+sequoia-core = { path = "core", version = "0.2.0" }
+sequoia-ffi = { path = "ffi", version = "0.2.0" }
+sequoia-net = { path = "net", version = "0.2.0" }
+sequoia-store = { path = "store", version = "0.2.0" }
+sequoia-tool = { path = "tool", version = "0.2.0" }
+sequoia-sqv = { path = "sqv", version = "0.2.0" }
[lib]
name = "sequoia"
diff --git a/buffered-reader/Cargo.toml b/buffered-reader/Cargo.toml
index 53e1fc95..12cc2cf8 100644
--- a/buffered-reader/Cargo.toml
+++ b/buffered-reader/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "buffered-reader"
description = "A super-powered Reader"
-version = "0.1.0"
+version = "0.2.0"
authors = [
"Justus Winter <justus@sequoia-pgp.org>",
"Kai Michaelis <kai@sequoia-pgp.org>",
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 57768fb3..ce18a3c3 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "sequoia-core"
description = "Policies for Sequoia"
-version = "0.1.0"
+version = "0.2.0"
authors = [
"Justus Winter <justus@sequoia-pgp.org>",
"Kai Michaelis <kai@sequoia-pgp.org>",
diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml
index eb3d050b..9e70cb58 100644
--- a/ffi/Cargo.toml
+++ b/ffi/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "sequoia-ffi"
description = "C API for Sequoia"
-version = "0.1.0"
+version = "0.2.0"
authors = [
"Justus Winter <justus@sequoia-pgp.org>",
"Kai Michaelis <kai@sequoia-pgp.org>",
diff --git a/net/Cargo.toml b/net/Cargo.toml
index 1c9d7f80..b42e56df 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "sequoia-net"
description = "Network services for OpenPGP"
-version = "0.1.0"
+version = "0.2.0"
authors = [
"Justus Winter <justus@sequoia-pgp.org>",
"Kai Michaelis <kai@sequoia-pgp.org>",
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index f64dfc56..b36caa57 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "sequoia-openpgp"
description = "OpenPGP data types and associated machinery"
-version = "0.1.0"
+version = "0.2.0"
authors = [
"Justus Winter <justus@sequoia-pgp.org>",
"Kai Michaelis <kai@sequoia-pgp.org>",
@@ -21,7 +21,7 @@ gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }
[dependencies]
-buffered-reader = { path = "../buffered-reader", version = "0.1.0", default-features = false }
+buffered-reader = { path = "../buffered-reader", version = "0.2.0", default-features = false }
base64 = "0.9.0"
bzip2 = { version = "0.3.2", optional = true }
failure = "0.1.2"
diff --git a/sqv/Cargo.toml b/sqv/Cargo.toml
index f9edb942..7bf2301c 100644
--- a/sqv/Cargo.toml
+++ b/sqv/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "sequoia-sqv"
description = "A simple signature verification program"
-version = "0.1.0"
+version = "0.2.0"
authors = [
"Justus Winter <justus@sequoia-pgp.org>",
"Kai Michaelis <kai@sequoia-pgp.org>",
@@ -11,7 +11,7 @@ documentation = "https://docs.sequoia-pgp.org/sqv"
homepage = "https://sequoia-pgp.org/"
repository = "https://gitlab.com/sequoia-pgp/sequoia"
readme = "README.md"
-keywords = ["cryptography", "openpgp", "pgp", "verification", "detached signatures"]
+keywords = ["cryptography", "openpgp", "pgp", "signature", "verification"]
categories = ["cryptography", "command-line-utilities"]
license = "GPL-3.0"
@@ -20,7 +20,7 @@ gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }
[dependencies]
-sequoia-openpgp = { path = "../openpgp", version = "0.1", default-features = false }
+sequoia-openpgp = { path = "../openpgp", version = "0.2", default-features = false }
clap = "2.32.0"
failure = "0.1.2"
time = "0.1.38"
diff --git a/store/Cargo.toml b/store/Cargo.toml
index 0f7f521c..2f5c6fbe 100644
--- a/store/Cargo.toml
+++ b/store/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "sequoia-store"
description = "Public-Key store for Sequoia"
-version = "0.1.0"
+version = "0.2.0"
authors = [
"Justus Winter <justus@sequoia-pgp.org>",
"Kai Michaelis <kai@sequoia-pgp.org>",
diff --git a/tool/Cargo.toml b/tool/Cargo.toml
index 32b0239d..a510ebb0 100644
--- a/tool/Cargo.toml
+++ b/tool/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "sequoia-tool"
description = "Command-line frontends for Sequoia"
-version = "0.1.0"
+version = "0.2.0"
authors = [
"Justus Winter <justus@sequoia-pgp.org>",
"Kai Michaelis <kai@sequoia-pgp.org>",