diff --git a/openssl-sys/CHANGELOG.md b/openssl-sys/CHANGELOG.md index 8587ad22622b0cf0afeed1ba24a51d693533a406..0d8c1e184e3ca51a336ee36dddce505e1a5ac790 100644 --- a/openssl-sys/CHANGELOG.md +++ b/openssl-sys/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## [v0.9.84] - 2023-04-01 + +### Added + +* Added `ASN1_INTEGER_dup` and `ASN1_INTEGER_cmp`. +* Added `stack_st_X509_NAME_ENTRY`. +* Added `DIST_POINT_NAME`, `DIST_POINT`, `stack_st_DIST_POINT`, `DIST_POINT_free`, and `DIST_POINT_NAME_free`. + ## [v0.9.83] - 2023-03-23 ### Fixed @@ -410,7 +418,8 @@ Fixed builds against OpenSSL built with `no-cast`. * Added `X509_verify` and `X509_REQ_verify`. * Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`. -[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.83..master +[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.84..master +[v0.9.84]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.83...openssl-sys-v0.9.84 [v0.9.83]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.82...openssl-sys-v0.9.83 [v0.9.82]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.81...openssl-sys-v0.9.82 [v0.9.81]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.80...openssl-sys-v0.9.81 diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 109a859ddcd323dd964b7844f85651b02838d198..0dc6df9253c9b49c601ad4006f99c8744dbef023 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl-sys" -version = "0.9.83" +version = "0.9.84" authors = [ "Alex Crichton ", "Steven Fackler ",