Skip to content

Commit 7daab5b

Browse files
authored
Merge pull request #2009 from reaperhulk/changelog
changelog and version bump
2 parents 0008d12 + 12ee78d commit 7daab5b

File tree

4 files changed

+25
-5
lines changed

4 files changed

+25
-5
lines changed

openssl-sys/CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,16 @@
22

33
## [Unreleased]
44

5+
## [v0.9.91] - 2023-08-06
6+
57
### Added
68

79
* Expose `poly1305_state`, `CRYPTO_poly1305_init`, `CRYPTO_poly1305_update`, and `CRYPTO_poly1305_finish` on BoringSSL and LibreSSL.
10+
* Fix detection of libraries on OpenBSD.
11+
* Added `EC_POINT_point2hex` and `EC_POINT_hex2point`.
12+
* Added `EVP_PKEY_verify_recover_init`, `EVP_PKEY_verify_recover`, and `EVP_PKEY_CTX_set_signature_md`.
13+
* Added `EVP_CIPHER_CTX_FLAG_WRAP_ALLOW` and `EVP_CTX_set_flags`.
14+
* Added `BN_mod_sqrt`.
815

916
## [v0.9.90] - 2023-06-20
1017

@@ -483,7 +490,8 @@ Fixed builds against OpenSSL built with `no-cast`.
483490
* Added `X509_verify` and `X509_REQ_verify`.
484491
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
485492

486-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.90..master
493+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.91..master
494+
[v0.9.91]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.90...openssl-sys-v0.9.91
487495
[v0.9.90]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.89...openssl-sys-v0.9.90
488496
[v0.9.89]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.88...openssl-sys-v0.9.89
489497
[v0.9.88]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.87...openssl-sys-v0.9.88

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

openssl/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [v0.10.56] - 2023-08-06
6+
7+
## Added
8+
9+
* Added `BigNumRef::mod_sqrt`.
10+
* Added `PkeyCtxRef::set_signature_md` and `PkeyCtxRef::set_rsa_pss_saltlen`.
11+
* Added `PkeyCtxRef::verify_recover_init` and `PkeyCtxRef::verify_recover`.
12+
* Added `BigNumRef::is_even` and `BigNumRef::is_odd`.
13+
* Added `EcPointRef::to_hex_str` and `EcPoint::from_hex_str`.
14+
* Added support for AES key wrap and wrap pad.
15+
516
## [v0.10.55] - 2023-06-20
617

718
### Fixed
@@ -776,7 +787,8 @@
776787

777788
Look at the [release tags] for information about older releases.
778789

779-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.55...master
790+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.56...master
791+
[v0.10.56]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.55...openssl-v0.10.56
780792
[v0.10.55]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.54...openssl-v0.10.55
781793
[v0.10.54]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.53...openssl-v0.10.54
782794
[v0.10.53]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.52...openssl-v0.10.53

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.55"
3+
version = "0.10.56"
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.89", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.91", path = "../openssl-sys" }
3434

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

0 commit comments

Comments
 (0)