Skip to content

Commit 4e0e05a

Browse files
committed
bump openssl and openssl-sys + changelogs
1 parent c2b124a commit 4e0e05a

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

openssl-sys/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [v0.9.100] - 2024-02-19
6+
57
### Added
68

79
* Added `OSSL_PARAM`, `OSSL_PARAM_construct_uint` , `OSSL_PARAM_construct_end`.
810
* Added `EVP_PKEY_CTX_set_params` and `EVP_PKEY_CTX_get_params`.
11+
* Added `X509_alias_get0`.
12+
* Added `EVP_default_properties_enable_fips`.
913

1014
## [v0.9.99] - 2024-01-19
1115

@@ -583,7 +587,8 @@ Fixed builds against OpenSSL built with `no-cast`.
583587
* Added `X509_verify` and `X509_REQ_verify`.
584588
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
585589

586-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.99..master
590+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.100..master
591+
[v0.9.100]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.99...openssl-sys-v0.9.100
587592
[v0.9.99]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.98...openssl-sys-v0.9.99
588593
[v0.9.98]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.97...openssl-sys-v0.9.98
589594
[v0.9.97]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.97

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

openssl/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [v0.10.64] - 2024-02-19
6+
57
### Added
68

79
* Added `PkeyCtxRef::{nonce_type, set_nonce_type}`.
10+
* Added `X509Ref::alias`.
11+
812

913
## [v0.10.63] - 2024-01-19
1014

@@ -888,7 +892,8 @@
888892

889893
Look at the [release tags] for information about older releases.
890894

891-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...master
895+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.64...master
896+
[v0.10.64]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...openssl-v0.10.64
892897
[v0.10.63]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.62...openssl-v0.10.63
893898
[v0.10.62]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...openssl-v0.10.62
894899
[v0.10.61]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.60...openssl-v0.10.61

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.63"
3+
version = "0.10.64"
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.99", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.100", path = "../openssl-sys" }
3434

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

0 commit comments

Comments
 (0)