Skip to content

Commit 7b3ec80

Browse files
authored
Merge pull request #2316 from alex/bump-for-release
Release openssl v0.10.67 and openssl-sys v0.9.104
2 parents ee3b024 + b510e8c commit 7b3ec80

File tree

4 files changed

+40
-5
lines changed

4 files changed

+40
-5
lines changed

openssl-sys/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [v0.9.104] - 2024-10-15
6+
7+
### Added
8+
9+
* Added support for LibreSSL 4.0.x.
10+
* Added `EVP_KDF_*` and `EVP_KDF_CTX_*` bindings.
11+
* Added `EVP_DigestSqueeze`.
12+
* Added `OSSL_PARAM_construct_octet_string`.
13+
* Added `OSSL_set_max_threads` and `OSSL_get_max_threads`.
14+
15+
### Changed
16+
17+
* `openssl-sys` is now a 2021 edition crate
18+
* Explicitly specify the MSRV in `Cargo.toml`
19+
* Raised the `bindgen` (optional) dependency from 0.65 to 0.69
20+
521
## [v0.9.103] - 2024-07-20
622

723
### Added
@@ -607,7 +623,8 @@ Fixed builds against OpenSSL built with `no-cast`.
607623
* Added `X509_verify` and `X509_REQ_verify`.
608624
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
609625

610-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.103..master
626+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.104..master
627+
[v0.9.104]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.103...openssl-sys-v0.9.104
611628
[v0.9.103]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.102...openssl-sys-v0.9.103
612629
[v0.9.102]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.101...openssl-sys-v0.9.102
613630
[v0.9.101]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.100...openssl-sys-v0.9.101

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

openssl/CHANGELOG.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
## [Unreleased]
44

5+
## [v0.10.67] - 2024-10-15
6+
7+
### Added
8+
9+
* Added support for LibreSSL 4.0.x.
10+
* Added `argon2id`
11+
12+
### Fixed
13+
14+
* Fixed a case where `MdCtxRef::digest_verify_final` could leave an error on the stack.
15+
* Fixed a case where `RsaRef::check_key` could leave an errror on the stack.
16+
17+
### Changed
18+
19+
* `openssl` is now a 2021 edition crate
20+
* Explicitly specify the MSRV in `Cargo.toml`
21+
522
## [v0.10.66] - 2024-07-21
623

724
### Fixed
@@ -908,7 +925,8 @@
908925

909926
Look at the [release tags] for information about older releases.
910927

911-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.66...master
928+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.67...master
929+
[v0.10.67]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.66...openssl-v0.10.67
912930
[v0.10.66]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.65...openssl-v0.10.66
913931
[v0.10.65]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.64...openssl-v0.10.65
914932
[v0.10.64]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...openssl-v0.10.64

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.66"
3+
version = "0.10.67"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "Apache-2.0"
66
description = "OpenSSL bindings"
@@ -31,7 +31,7 @@ libc = "0.2"
3131
once_cell = "1.5.2"
3232

3333
openssl-macros = { version = "0.1.0", path = "../openssl-macros" }
34-
ffi = { package = "openssl-sys", version = "0.9.103", path = "../openssl-sys" }
34+
ffi = { package = "openssl-sys", version = "0.9.104", path = "../openssl-sys" }
3535

3636
[dev-dependencies]
3737
hex = "0.4"

0 commit comments

Comments
 (0)