Skip to content

Commit cc2850f

Browse files
authored
Merge pull request #2152 from alex/bump-for-release
Release openssl v0.10.63 and openssl-sys v0.9.99
2 parents fde3d03 + 1951575 commit cc2850f

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

openssl-sys/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [v0.9.99] - 2024-01-19
6+
7+
### Added
8+
9+
* On macOS added Homebrew's `[email protected]` to the list of candidates to build against.
10+
* `NID_brainpoolP256r1`, `NID_brainpoolP320r1`, `NID_brainpoolP384r1`, and `NID_brainpoolP512r1` are now available on LibreSSL.
11+
12+
### Changed
13+
14+
* `X509_PURPOSE` is now opaque on LibreSSL 3.9.0+.
15+
516
## [v0.9.98] - 2023-12-22
617

718
### Added
@@ -567,7 +578,8 @@ Fixed builds against OpenSSL built with `no-cast`.
567578
* Added `X509_verify` and `X509_REQ_verify`.
568579
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
569580

570-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.98..master
581+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.99..master
582+
[v0.9.99]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.98...openssl-sys-v0.9.99
571583
[v0.9.98]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.97...openssl-sys-v0.9.98
572584
[v0.9.97]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.97
573585
[v0.9.96]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.95...openssl-sys-v0.9.96

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.98"
3+
version = "0.9.99"
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,10 +2,20 @@
22

33
## [Unreleased]
44

5+
## [v0.10.63] - 2024-01-19
6+
57
### Added
68

79
* Added `Pkcs7Ref::{type_,signed}`.
810
* Added `Pkcs7SignedRef::certificates`.
11+
* Added `Cipher::{aes_256_xts,des_ede3_ecb,des_ede3_cfb8,des_ede3_ofb,camellia128_ofb,camellia192_ofb,camellia256_ofb,cast5_ofb,idea_ofb}`
12+
* Added `PKey::from_dhx`
13+
* Added `PKey::{public_key_from_pem_passphrase,public_key_from_pem_callback}`.
14+
15+
### Changed
16+
17+
* `Cipher::aes_128_ofb` is now available on BoringSSL
18+
* `Nid::{BRAINPOOL_P256R1,BRAINPOOL_P320R1,BRAINPOOL_P384R1,BRAINPOOL_P512R1}` are now available on LibreSSL.
919

1020
## [v0.10.62] - 2023-12-22
1121

@@ -874,7 +884,8 @@
874884

875885
Look at the [release tags] for information about older releases.
876886

877-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.62...master
887+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...master
888+
[v0.10.63]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.62...openssl-v0.10.63
878889
[v0.10.62]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...openssl-v0.10.62
879890
[v0.10.61]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.60...openssl-v0.10.61
880891
[v0.10.60]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.59...openssl-v0.10.60

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.62"
3+
version = "0.10.63"
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.98", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.99", path = "../openssl-sys" }
3434

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

0 commit comments

Comments
 (0)