Skip to content

Commit 32f150b

Browse files
authored
Merge pull request #2265 from alex/bump-for-release
Release openssl v0.10.65 and openssl-sys v0.9.103
2 parents 7c7958d + 98addd2 commit 32f150b

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

openssl-sys/CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## [v0.9.103] - 2024-07-20
6+
7+
### Added
8+
9+
* Added several functions and constants for datagram `BIO`s.
10+
* Added `EVP_PKEY_set1_DSA`, `EVP_PKEY_set1_DH`, and `EVP_PKEY_set1_EC_KEY`.
11+
* Added several functions related to QUIC support.
12+
513
## [v0.9.102] - 2024-03-28
614

715
### Added
@@ -599,7 +607,8 @@ Fixed builds against OpenSSL built with `no-cast`.
599607
* Added `X509_verify` and `X509_REQ_verify`.
600608
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
601609

602-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.102..master
610+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.103..master
611+
[v0.9.103]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.102...openssl-sys-v0.9.103
603612
[v0.9.102]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.101...openssl-sys-v0.9.102
604613
[v0.9.101]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.100...openssl-sys-v0.9.101
605614
[v0.9.100]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.99...openssl-sys-v0.9.100

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.102"
3+
version = "0.9.103"
44
authors = [
55
"Alex Crichton <[email protected]>",
66
"Steven Fackler <[email protected]>",

openssl/CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## [v0.10.65] - 2024-07-20
6+
7+
### Fixed
8+
9+
* Ensure we are initialized in `MessageDigest::from_nid`, `Md::from_nid`, `Md::fetch`
10+
11+
### Changed
12+
13+
* Expose `SslContextBuilder::set_keylog_callback` on BoringSSL
14+
515
## [v0.10.64] - 2024-02-19
616

717
### Added
@@ -892,7 +902,8 @@
892902

893903
Look at the [release tags] for information about older releases.
894904

895-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.64...master
905+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.65...master
906+
[v0.10.65]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.64...openssl-v0.10.65
896907
[v0.10.64]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...openssl-v0.10.64
897908
[v0.10.63]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.62...openssl-v0.10.63
898909
[v0.10.62]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...openssl-v0.10.62

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.64"
3+
version = "0.10.65"
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.100", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.103", path = "../openssl-sys" }
3434

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

0 commit comments

Comments
 (0)