Unverified Commit e0b937c4 authored by Steven Fackler's avatar Steven Fackler
Browse files

Release openssl v0.10.44

parent a1b82a2d
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -2,6 +2,14 @@

## [Unreleased]

## [v0.10.44] - 2022-12-06

### Added

* Added `CipherCtxRef::num`, `CipherCtxRef::minimal_output_size`, and `CipherCtxRef::cipher_update_unchecked`.
* Improved output buffer size checks in `CipherCtxRef::cipher_update`.
* Added `X509Lookup::file` and `X509LookupRef::load_cert_file`.

## [v0.10.43] - 2022-11-23

### Added
@@ -641,7 +649,8 @@

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

[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.43...master
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.44...master
[v0.10.44]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.44...openssl-v0.10.44
[v0.10.43]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.42...openssl-v0.10.43
[v0.10.42]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.41...openssl-v0.10.42
[v0.10.41]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.40...openssl-v0.10.41
+2 −2
Original line number Diff line number Diff line
[package]
name = "openssl"
version = "0.10.43"
version = "0.10.44"
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.78", path = "../openssl-sys" }
ffi = { package = "openssl-sys", version = "0.9.79", path = "../openssl-sys" }

[dev-dependencies]
hex = "0.3"