diff --git a/CHANGELOG.md b/CHANGELOG.md index 405d999..a39e98d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,11 +12,27 @@ ### Added/Changed/Fixed +Global: +- Use SPDX license format (#137) - Set MSRV to 1.57 (due to `ring`/`once_cell`) +- Switch base64 decoding to `data-encoding` crate (#136) + +Code: - Add `verify` feature to verify a certificate revocation list by a public key +- Fixed CriAttributes parser (#131) +- Refactor code for parsing X509Version +- Add verify signature method to revocation list (#130) +- Add support for parsing challenge password attribute in CSR's (#129) +- Add support for multi-word PEM labels (C#135) + +Docs: +- Fix broken FromDer trait link in README ### Thanks +- Bernd Krietenstein, Florian Zipperle, Jean-Baptiste Trystram, Daniel McCarney, + Jeff Hiner, Campbell He, Sebastian Dröge + ## 0.14.0 ### Added/Changed diff --git a/Cargo.toml b/Cargo.toml index be13660..0fbf4a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "x509-parser" -version = "0.14.0" +version = "0.15.0" description = "Parser for the X.509 v3 format (RFC 5280 certificates)" license = "MIT OR Apache-2.0" keywords = ["X509","Certificate","parser","nom"]