summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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]>;
}