summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2021-01-21 14:00:05 +0100
committerJustus Winter <justus@sequoia-pgp.org>2021-01-21 14:10:57 +0100
commitb4c3a26d096d67004234f8f8e738b0f02569227b (patch)
tree809a958b94bc9948a08caf25d32003222880d827
parent8483758899c68cb19113236f23ad2380697f5201 (diff)
autocrypt: Release 0.23.0.autocrypt/v0.23.0
-rw-r--r--Cargo.lock2
-rw-r--r--autocrypt/Cargo.toml6
-rw-r--r--autocrypt/README.md4
-rw-r--r--autocrypt/src/lib.rs4
-rw-r--r--sq/Cargo.toml2
5 files changed, 7 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 253c1f0b..6a0a789e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1758,7 +1758,7 @@ dependencies = [
[[package]]
name = "sequoia-autocrypt"
-version = "0.22.0"
+version = "0.23.0"
dependencies = [
"base64",
"sequoia-openpgp",
diff --git a/autocrypt/Cargo.toml b/autocrypt/Cargo.toml
index 9cd7cca3..234f7b3f 100644
--- a/autocrypt/Cargo.toml
+++ b/autocrypt/Cargo.toml
@@ -1,13 +1,13 @@
[package]
name = "sequoia-autocrypt"
description = "Autocrypt support"
-version = "0.22.0"
+version = "0.23.0"
authors = [
"Justus Winter <justus@sequoia-pgp.org>",
"Kai Michaelis <kai@sequoia-pgp.org>",
"Neal H. Walfield <neal@sequoia-pgp.org>",
]
-documentation = "https://docs.sequoia-pgp.org/0.21.0/sequoia_autocrypt"
+documentation = "https://docs.rs/sequoia-autocrypt"
homepage = "https://sequoia-pgp.org/"
repository = "https://gitlab.com/sequoia-pgp/sequoia"
readme = "README.md"
@@ -21,7 +21,7 @@ gitlab = { repository = "sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }
[dependencies]
-sequoia-openpgp = { path = "../openpgp", version = "1.0.0", default-features = false }
+sequoia-openpgp = { path = "../openpgp", version = "1", default-features = false }
base64 = ">=0.12"
[features]
diff --git a/autocrypt/README.md b/autocrypt/README.md
index 3a502ea3..93c999e2 100644
--- a/autocrypt/README.md
+++ b/autocrypt/README.md
@@ -1,6 +1,4 @@
-# sequoia-autocrypt
-
-This module deals with Autocrypt encoded data (see the [Autocrypt
+This crate deals with Autocrypt encoded data (see the [Autocrypt
Spec]).
[Autocrypt Spec]: https://autocrypt.org/level1.html#openpgp-based-key-data
diff --git a/autocrypt/src/lib.rs b/autocrypt/src/lib.rs
index bdbb6b8a..e14511f9 100644
--- a/autocrypt/src/lib.rs
+++ b/autocrypt/src/lib.rs
@@ -1,6 +1,4 @@
-//! Autocrypt.
-//!
-//! This module deals with Autocrypt encoded data (see the [Autocrypt
+//! This crate deals with Autocrypt encoded data (see the [Autocrypt
//! Spec]).
//!
//! [Autocrypt Spec]: https://autocrypt.org/level1.html#openpgp-based-key-data
diff --git a/sq/Cargo.toml b/sq/Cargo.toml
index ca0adb17..9726300e 100644
--- a/sq/Cargo.toml
+++ b/sq/Cargo.toml
@@ -24,7 +24,7 @@ maintenance = { status = "actively-developed" }
[dependencies]
buffered-reader = { path = "../buffered-reader", version = "1.0.0", default-features = false }
sequoia-openpgp = { path = "../openpgp", version = "1.0.0", default-features = false }
-sequoia-autocrypt = { path = "../autocrypt", version = "0.22", default-features = false }
+sequoia-autocrypt = { path = "../autocrypt", version = "0.23", default-features = false }
sequoia-net = { path = "../net", version = "0.22", default-features = false, optional = true }
anyhow = "1.0.18"
chrono = "0.4.10"