summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2021-08-26 15:16:38 +0200
committerJustus Winter <justus@sequoia-pgp.org>2021-08-27 12:11:06 +0200
commitd5e48a760e0a20d99bab9549a0efda16c39a1f01 (patch)
treece8e2323edbe81229019ec38922c9e131086b383
parent316552ecabe7bb59978a2f31213b246cbd572e88 (diff)
openpgp: Update NEWS.
-rw-r--r--openpgp/NEWS10
-rw-r--r--openpgp/src/cert.rs2
2 files changed, 11 insertions, 1 deletions
diff --git a/openpgp/NEWS b/openpgp/NEWS
index e56b2ab8..4606ac1b 100644
--- a/openpgp/NEWS
+++ b/openpgp/NEWS
@@ -2,6 +2,16 @@
#+TITLE: sequoia-openpgp NEWS – history of user-visible changes
#+STARTUP: content hidestars
+* Changes in 1.4.0
+** New functionality
+ - Preferences::policy_uri
+ - TSK::eq
+ - ValidAmalgamation::revocation_keys
+ - ValidCert::policy_uri
+ - ValidCert::revocation_keys
+** Notable fixes
+ - Filters set using CertParser::unvalidated_cert_filter are now
+ preserved during iterations.
* Changes in 1.3.0
** New functionality
- CertBuilder::add_subkey_with
diff --git a/openpgp/src/cert.rs b/openpgp/src/cert.rs
index f9ffe76b..d32875f4 100644
--- a/openpgp/src/cert.rs
+++ b/openpgp/src/cert.rs
@@ -485,7 +485,7 @@ pub trait Preferences<'a>: seal::Sealed {
fn features(&self) -> Option<Features>;
/// Returns the URI of a document describing the policy
- /// the certificate was issued under
+ /// the certificate was issued under.
fn policy_uri(&self) -> Option<&'a [u8]>;
}