Unverified Commit 4a19cd48 authored by Alex Gaynor's avatar Alex Gaynor Committed by GitHub
Browse files

Merge pull request #2175 from reaperhulk/changelog

bump openssl and openssl-sys + changelogs
parents c2b124aa 4e0e05a6
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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

@@ -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
+1 −1
Original line number Diff line number Diff line
[package]
name = "openssl-sys"
version = "0.9.99"
version = "0.9.100"
authors = [
    "Alex Crichton <alex@alexcrichton.com>",
    "Steven Fackler <sfackler@gmail.com>",
+6 −1
Original line number Diff line number Diff line
@@ -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

@@ -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
+2 −2
Original line number Diff line number Diff line
[package]
name = "openssl"
version = "0.10.63"
version = "0.10.64"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "Apache-2.0"
description = "OpenSSL bindings"
@@ -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"