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

Merge pull request #2415 from alex/bump-version

Release openssl v0.10.73 and openssl-sys v0.9.109
parents c42d49c1 9ca6cfe2
Loading
Loading
Loading
Loading
+9 −1
Original line number Diff line number Diff line
@@ -2,6 +2,13 @@

## [Unreleased]

## [v0.9.109] - 2025-05-28

### Fixed

* Fixed building with `vcpkg`, a statically linked OpenSSL, and rust 1.87.0.
* Fixed building on the latest BoringSSL.

## [v0.9.108] - 2025-04-30

### Added
@@ -648,7 +655,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.108..master
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.109..master
[v0.9.109]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.108...openssl-sys-v0.9.109
[v0.9.108]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.107...openssl-sys-v0.9.108
[v0.9.107]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.106...openssl-sys-v0.9.107
[v0.9.106]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.105...openssl-sys-v0.9.106
+1 −1
Original line number Diff line number Diff line
[package]
name = "openssl-sys"
version = "0.9.108"
version = "0.9.109"
authors = [
    "Alex Crichton <alex@alexcrichton.com>",
    "Steven Fackler <sfackler@gmail.com>",
+12 −1
Original line number Diff line number Diff line
@@ -2,6 +2,16 @@

## [Unreleased]

## [v0.10.73] - 2025-05-28

### Fixed

* Fixed building on the latest BoringSSL.

### Changed

* Replaced ctest2 with ctest in systest.

## [v0.10.72] - 2025-04-04

### Fixed
@@ -969,7 +979,8 @@

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

[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.72...master
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.73...master
[v0.10.73]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.72...openssl-v0.10.73
[v0.10.72]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.71...openssl-v0.10.72
[v0.10.71]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.70...openssl-v0.10.71
[v0.10.70]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.69...openssl-v0.10.70
+2 −2
Original line number Diff line number Diff line
[package]
name = "openssl"
version = "0.10.72"
version = "0.10.73"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "Apache-2.0"
description = "OpenSSL bindings"
@@ -32,7 +32,7 @@ libc = "0.2"
once_cell = "1.5.2"

openssl-macros = { version = "0.1.1", path = "../openssl-macros" }
ffi = { package = "openssl-sys", version = "0.9.107", path = "../openssl-sys" }
ffi = { package = "openssl-sys", version = "0.9.109", path = "../openssl-sys" }

[dev-dependencies]
hex = "0.4"