Skip to content

Commit d7dae6f

Browse files
authored
Merge pull request #1970 from alex/bump-for-release
Release openssl v0.10.55 and openssl-sys v0.9.89
2 parents 28b3925 + 983b9e2 commit d7dae6f

File tree

4 files changed

+37
-5
lines changed

4 files changed

+37
-5
lines changed

openssl-sys/CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## [v0.9.89] - 2023-06-20
6+
7+
### Fixed
8+
9+
* Fixed compilation with recent versions of BoringSSL.
10+
11+
### Added
12+
13+
* Added support for detecting OpenSSL compiled with `OPENSSL_NO_OCB`.
14+
* Added `EVP_PKEY_SM2` and `NID_sm2`.
15+
* Added `EVP_PKEY_assign_RSA`, `EVP_PKEY_assign_DSA`, `EVP_PKEY_assign_DH`, and `EVP_PKEY_assign_EC_KEY`.
16+
* Added `EC_GROUP_get_asn1_flag`.
17+
* Expose `EC_POINT_get_affine_coordinates` on BoringSSL and LibreSSL.
18+
* Added `EVP_PKEY_derive_set_peer_ex`.
19+
520
## [v0.9.88] - 2023-05-30
621

722
### Added
@@ -458,7 +473,8 @@ Fixed builds against OpenSSL built with `no-cast`.
458473
* Added `X509_verify` and `X509_REQ_verify`.
459474
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
460475

461-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.88..master
476+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.89..master
477+
[v0.9.89]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.88...openssl-sys-v0.9.89
462478
[v0.9.88]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.87...openssl-sys-v0.9.88
463479
[v0.9.87]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.86...openssl-sys-v0.9.87
464480
[v0.9.86]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.85...openssl-sys-v0.9.86

openssl-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl-sys"
3-
version = "0.9.88"
3+
version = "0.9.89"
44
authors = [
55
"Alex Crichton <alex@alexcrichton.com>",
66
"Steven Fackler <sfackler@gmail.com>",

openssl/CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased]
44

5+
## [v0.10.55] - 2023-06-20
6+
7+
### Fixed
8+
9+
* Fixed compilation with the latest version of BoringSSL.
10+
* Fixed compilation when OpenSSL is compiled with `OPENSSL_NO_OCB`.
11+
* Fixed a segfault in `X509VerifyParamRef::set_host` when called with an empty string.
12+
13+
### Added
14+
15+
* Added `Deriver::set_peer_ex`.
16+
* Added `EcGroupRef::asn1_flag`.
17+
* Exposed `EcPointRef::affine_coordinates` on BoringSSL and LibreSSL.
18+
* Added `Nid::SM2` and `Id::SM2`
19+
520
## [v0.10.54] - 2023-05-31
621

722
### Fixed
@@ -761,7 +776,8 @@
761776

762777
Look at the [release tags] for information about older releases.
763778

764-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.54...master
779+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.55...master
780+
[v0.10.55]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.54...openssl-v0.10.55
765781
[v0.10.54]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.53...openssl-v0.10.54
766782
[v0.10.53]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.52...openssl-v0.10.53
767783
[v0.10.52]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.51...openssl-v0.10.52

openssl/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl"
3-
version = "0.10.54"
3+
version = "0.10.55"
44
authors = ["Steven Fackler <sfackler@gmail.com>"]
55
license = "Apache-2.0"
66
description = "OpenSSL bindings"
@@ -30,7 +30,7 @@ libc = "0.2"
3030
once_cell = "1.5.2"
3131

3232
openssl-macros = { version = "0.1.0", path = "../openssl-macros" }
33-
ffi = { package = "openssl-sys", version = "0.9.88", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.89", path = "../openssl-sys" }
3434

3535
[dev-dependencies]
3636
hex = "0.3"

0 commit comments

Comments
 (0)