Skip to content

Commit

Permalink
Merge pull request #2175 from reaperhulk/changelog
Browse files Browse the repository at this point in the history
bump openssl and openssl-sys + changelogs
  • Loading branch information
alex committed Feb 19, 2024
2 parents c2b124a + 4e0e05a commit 4a19cd4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
7 changes: 6 additions & 1 deletion openssl-sys/CHANGELOG.md
Expand Up @@ -2,10 +2,14 @@

## [Unreleased]

## [v0.9.100] - 2024-02-19

### Added

* Added `OSSL_PARAM`, `OSSL_PARAM_construct_uint` , `OSSL_PARAM_construct_end`.
* Added `EVP_PKEY_CTX_set_params` and `EVP_PKEY_CTX_get_params`.
* Added `X509_alias_get0`.
* Added `EVP_default_properties_enable_fips`.

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

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

[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.99..master
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.100..master
[v0.9.100]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.99...openssl-sys-v0.9.100
[v0.9.99]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.98...openssl-sys-v0.9.99
[v0.9.98]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.97...openssl-sys-v0.9.98
[v0.9.97]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.97
Expand Down
2 changes: 1 addition & 1 deletion openssl-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "openssl-sys"
version = "0.9.99"
version = "0.9.100"
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Steven Fackler <sfackler@gmail.com>",
Expand Down
7 changes: 6 additions & 1 deletion openssl/CHANGELOG.md
Expand Up @@ -2,9 +2,13 @@

## [Unreleased]

## [v0.10.64] - 2024-02-19

### Added

* Added `PkeyCtxRef::{nonce_type, set_nonce_type}`.
* Added `X509Ref::alias`.


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

Expand Down Expand Up @@ -888,7 +892,8 @@

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

[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...master
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.64...master
[v0.10.64]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...openssl-v0.10.64
[v0.10.63]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.62...openssl-v0.10.63
[v0.10.62]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...openssl-v0.10.62
[v0.10.61]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.60...openssl-v0.10.61
Expand Down
4 changes: 2 additions & 2 deletions openssl/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "openssl"
version = "0.10.63"
version = "0.10.64"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "Apache-2.0"
description = "OpenSSL bindings"
Expand Down Expand Up @@ -30,7 +30,7 @@ libc = "0.2"
once_cell = "1.5.2"

openssl-macros = { version = "0.1.0", path = "../openssl-macros" }
ffi = { package = "openssl-sys", version = "0.9.99", path = "../openssl-sys" }
ffi = { package = "openssl-sys", version = "0.9.100", path = "../openssl-sys" }

[dev-dependencies]
hex = "0.3"

0 comments on commit 4a19cd4

Please sign in to comment.