Skip to content

Commit 4c98550

Browse files
authored
Merge pull request #2133 from alex/bump-for-release
Release openssl v0.10.62 and openssl-sys v0.9.98
2 parents 5176570 + c2c52d8 commit 4c98550

File tree

4 files changed

+30
-5
lines changed

4 files changed

+30
-5
lines changed

openssl-sys/CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
## [Unreleased]
44

5+
## [v0.9.98] - 2023-12-22
6+
7+
### Added
8+
9+
* Added `RAND_priv_bytes`.
10+
* Added `NID_brainpoolP320r1`.
11+
12+
### Changed
13+
14+
* `X509_PURPOSE_get0` now returns a `const` pointer on LibreSSL 3.9.0+.
15+
* `X509V3_EXT_add_alias` is removed on LibreSSL 3.9.0+.
16+
517
## [v0.9.97] - 2023-12-04
618

719
### Changed
@@ -555,7 +567,8 @@ Fixed builds against OpenSSL built with `no-cast`.
555567
* Added `X509_verify` and `X509_REQ_verify`.
556568
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
557569

558-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.97..master
570+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.98..master
571+
[v0.9.98]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.97...openssl-sys-v0.9.98
559572
[v0.9.97]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.97
560573
[v0.9.96]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.95...openssl-sys-v0.9.96
561574
[v0.9.95]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.94...openssl-sys-v0.9.95

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.97"
3+
version = "0.9.98"
44
authors = [
55
"Alex Crichton <alex@alexcrichton.com>",
66
"Steven Fackler <sfackler@gmail.com>",

openssl/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## [v0.10.62] - 2023-12-22
6+
7+
### Added
8+
9+
* Added `Nid::BRAINPOOL_P320R1`
10+
* Added `rand_priv_bytes`
11+
12+
### Fixed
13+
14+
* Fixed building on the latest version of BoringSSL
15+
516
## [v0.10.61] - 2023-12-04
617

718
### Changed
@@ -858,7 +869,8 @@
858869

859870
Look at the [release tags] for information about older releases.
860871

861-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...master
872+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.62...master
873+
[v0.10.62]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...openssl-v0.10.62
862874
[v0.10.61]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.60...openssl-v0.10.61
863875
[v0.10.60]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.59...openssl-v0.10.60
864876
[v0.10.59]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.58...openssl-v0.10.59

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.61"
3+
version = "0.10.62"
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.97", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.98", path = "../openssl-sys" }
3434

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

0 commit comments

Comments
 (0)