Skip to content

Commit d009660

Browse files
authored
Merge pull request #2083 from alex/bump-for-release
Release openssl v0.10.59 and openssl-sys v0.9.95
2 parents 3abd633 + 955c348 commit d009660

File tree

4 files changed

+30
-7
lines changed

4 files changed

+30
-7
lines changed

openssl-sys/CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## [v0.9.95] - 2023-11-03
6+
7+
### Changed
8+
9+
* Fixed the availability of `EVP_PKEY_RSA_PSS` on OpenSSL
10+
11+
### Added
12+
13+
* Added support for LibreSSL 3.8.x.
14+
* Added `NID_chacha20_poly1305`
15+
516
## [v0.9.94] - 2023-11-01
617

718
### Changed
@@ -522,8 +533,9 @@ Fixed builds against OpenSSL built with `no-cast`.
522533
* Added `X509_verify` and `X509_REQ_verify`.
523534
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
524535

525-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.94..master
526-
[v0.9.93]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.94
536+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.95..master
537+
[v0.9.95]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.94...openssl-sys-v0.9.95
538+
[v0.9.94]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.94
527539
[v0.9.93]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93
528540
[v0.9.92]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.91...openssl-sys-v0.9.92
529541
[v0.9.91]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.90...openssl-sys-v0.9.91

openssl-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl-sys"
3-
version = "0.9.94"
3+
version = "0.9.95"
44
authors = [
55
"Alex Crichton <[email protected]>",
66
"Steven Fackler <[email protected]>",

openssl/CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## [v0.10.59] - 2023-11-03
6+
7+
### Added
8+
9+
* Added `Nid::CHACHA20_POLY1305`
10+
11+
### Changed
12+
13+
* Fixed the availability of `Id::RSA_PSS` on OpenSSL
14+
515
## [v0.10.58] - 2023-11-01
616

717
### Added
@@ -815,8 +825,9 @@
815825

816826
Look at the [release tags] for information about older releases.
817827

818-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.58...master
819-
[v0.10.57]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.58
828+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.59...master
829+
[v0.10.59]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.58...openssl-v0.10.59
830+
[v0.10.58]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.58
820831
[v0.10.57]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.56...openssl-v0.10.57
821832
[v0.10.56]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.55...openssl-v0.10.56
822833
[v0.10.55]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.54...openssl-v0.10.55

openssl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl"
3-
version = "0.10.58"
3+
version = "0.10.59"
44
authors = ["Steven Fackler <[email protected]>"]
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.94", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.95", path = "../openssl-sys" }
3434

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

0 commit comments

Comments
 (0)