Skip to content

Commit babb61c

Browse files
committed
Release openssl v0.10.51 and openssl-sys v0.9.86
1 parent 5fbd639 commit babb61c

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

openssl-sys/CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## [v0.9.86] - 2023-04-20
6+
7+
### Fixed
8+
9+
* Fixed BoringSSL support with the latest bindgen release.
10+
11+
### Added
12+
13+
* Added bindings for PKCS#7 functions and more X.509 functions.
14+
15+
516
## [v0.9.85] - 2023-04-09
617

718
### Added
@@ -424,8 +435,9 @@ Fixed builds against OpenSSL built with `no-cast`.
424435
* Added `X509_verify` and `X509_REQ_verify`.
425436
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
426437

427-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.85..master
428-
[v0.9.85]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.85...openssl-sys-v0.9.85
438+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.86..master
439+
[v0.9.86]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.85...openssl-sys-v0.9.86
440+
[v0.9.85]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.84...openssl-sys-v0.9.85
429441
[v0.9.84]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.83...openssl-sys-v0.9.84
430442
[v0.9.83]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.82...openssl-sys-v0.9.83
431443
[v0.9.82]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.81...openssl-sys-v0.9.82

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

openssl/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [v0.10.51] - 2023-04-20
6+
7+
### Added
8+
9+
* Added `X509RevokedRef::issuer_name` and `X509RevokedRef::reason_code`.
10+
* Added `Dh::set_key` and `Dh::set_public_key`
11+
* Added `Asn1OctetString` and `Asn1OctetStringRef1`
12+
* Added `X509Extension::new_from_der`
13+
14+
### Deprecated
15+
16+
* Deprecated `X509Extension::new` and `X509Extension::new_nid` in favor of `X509Extension::new_from_der` and the `extensions` module.
17+
* Deprecated `X509Extension::add_alias`, it is not required with `new_from_der` or the `extensions` module.
18+
519
## [v0.10.50] - 2023-04-09
620

721
### Added
@@ -724,7 +738,8 @@
724738

725739
Look at the [release tags] for information about older releases.
726740

727-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.50...master
741+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.51...master
742+
[v0.10.51]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.50...openssl-v0.10.51
728743
[v0.10.50]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.49...openssl-v0.10.50
729744
[v0.10.49]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.48...openssl-v0.10.49
730745
[v0.10.48]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.47...openssl-v0.10.48

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.50"
3+
version = "0.10.51"
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.85", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.86", path = "../openssl-sys" }
3434

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

0 commit comments

Comments
 (0)