summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2021-03-05 14:28:54 +0100
committerJustus Winter <justus@sequoia-pgp.org>2021-03-05 14:28:54 +0100
commit1a2ac93e094721b6fb21c337a5f6bb350cfbef93 (patch)
treeafa744bdde62601c8cf21622fac6259cc721e431
parentad026605585d0a2451578f755f21d5c27c3c1503 (diff)
openpgp: Release 1.1.0.openpgp/v1.1.0
-rw-r--r--Cargo.lock2
-rw-r--r--openpgp/Cargo.toml4
-rw-r--r--openpgp/NEWS23
3 files changed, 26 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 7eb2cddd..48125947 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1862,7 +1862,7 @@ dependencies = [
[[package]]
name = "sequoia-openpgp"
-version = "1.0.0"
+version = "1.1.0"
dependencies = [
"anyhow",
"backtrace",
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index 35827295..22737e39 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 = "1.0.0"
+version = "1.1.0"
authors = [
"Igor Matuszewski <igor@sequoia-pgp.org>",
"Justus Winter <justus@sequoia-pgp.org>",
@@ -11,7 +11,7 @@ authors = [
"Wiktor Kwapisiewicz <wiktor@sequoia-pgp.org>",
]
build = "build.rs"
-documentation = "https://docs.sequoia-pgp.org/0.21.0/sequoia_openpgp"
+documentation = "https://docs.rs/sequoia-openpgp"
homepage = "https://sequoia-pgp.org/"
repository = "https://gitlab.com/sequoia-pgp/sequoia"
readme = "README.md"
diff --git a/openpgp/NEWS b/openpgp/NEWS
index 01c90037..782a5cb9 100644
--- a/openpgp/NEWS
+++ b/openpgp/NEWS
@@ -2,6 +2,29 @@
#+TITLE: sequoia-openpgp NEWS – history of user-visible changes
#+STARTUP: content hidestars
+* Changes in 1.1.0
+** New functionality
+ - The new regex module provides regular expression support for
+ scoping trust signatures.
+ - Sequoia now supports the Cleartext Signature Framework.
+ - ComponentAmalgamation::signatures
+ - ComponentBundle::signatures
+ - Fingerprint::to_spaced_hex
+ - HashAlgorithm::text_name
+ - KeyHandle now implements FromStr
+ - KeyHandle::is_invalid
+ - KeyHandle::to_hex
+ - KeyHandle::to_spaced_hex
+ - KeyID::to_spaced_hex
+ - Signature4::hash_for_confirmation
+ - Signature::hash_for_confirmation
+ - TSK::armored
+ - ValidComponentAmalgamation::signatures
+** Notable fixes
+ - Fixed two crashes related to detached signature verification.
+ - Fixed a parsing bug where the parser did not consume all data in
+ an compressed data packet.
+
* Changes in 1.0.0
This is the initial stable release.