Skip to content

Commit 1a16077

Browse files
authored
Merge pull request #2369 from alex/bump-for-release
Release openssl v0.10.71 and openssl-sys v0.9.106
2 parents 3312618 + f71fcf2 commit 1a16077

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

openssl-sys/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [v0.9.106] - 2025-02-15
6+
7+
### Added
8+
9+
* Support building with `OPENSSL_NO_RC2`.
10+
* Exposed `EVP_rc2_cbc` and `EVP_rc2_40_cbc`.
11+
512
## [v0.9.105] - 2025-02-02
613

714
### Added
@@ -629,7 +636,9 @@ Fixed builds against OpenSSL built with `no-cast`.
629636
* Added `X509_verify` and `X509_REQ_verify`.
630637
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
631638

632-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.104..master
639+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.106..master
640+
[v0.9.106]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.105...openssl-sys-v0.9.106
641+
[v0.9.105]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.104...openssl-sys-v0.9.105
633642
[v0.9.104]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.103...openssl-sys-v0.9.104
634643
[v0.9.103]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.102...openssl-sys-v0.9.103
635644
[v0.9.102]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.101...openssl-sys-v0.9.102

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

openssl/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [v0.10.71] - 2025-02-15
6+
7+
### Added
8+
9+
* Added `Cipher::rc2_cbc` and `Cipher::rc2_40_cbc`.
10+
511
## [v0.10.70] - 2025-02-02
612

713
### Fixed
@@ -953,7 +959,10 @@
953959

954960
Look at the [release tags] for information about older releases.
955961

956-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.68...master
962+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.71...master
963+
[v0.10.71]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.70...openssl-v0.10.71
964+
[v0.10.70]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.69...openssl-v0.10.70
965+
[v0.10.69]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.68...openssl-v0.10.69
957966
[v0.10.68]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.67...openssl-v0.10.68
958967
[v0.10.67]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.66...openssl-v0.10.67
959968
[v0.10.66]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.65...openssl-v0.10.66

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.70"
3+
version = "0.10.71"
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.1", path = "../openssl-macros" }
34-
ffi = { package = "openssl-sys", version = "0.9.105", path = "../openssl-sys" }
34+
ffi = { package = "openssl-sys", version = "0.9.106", path = "../openssl-sys" }
3535

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

0 commit comments

Comments
 (0)