Commit 98b87309 authored by Steven Fackler's avatar Steven Fackler
Browse files

Release openssl-errors v0.2.0

parent 5e2410fb
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
@@ -2,8 +2,19 @@

## [Unreleased]

## [v0.2.0] - 2021-06-18

## Changed

* Constructors and accessors on the `Function` and `Reason` types have been made private APIs.

## Added

* Added support for OpenSSL 3.x.x.

## v0.1.0 - 2019-03-14

Initial release

[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-errors-v0.1.0...master
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-errors-v0.2.0...master
[v0.2.0]: https://github.com/sfackler/rust-openssl/compare/openssl-errors-v0.1.0...openssl-errors-v0.2.0
+2 −2
Original line number Diff line number Diff line
[package]
name = "openssl-errors"
version = "0.1.0"
version = "0.2.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
@@ -13,7 +13,7 @@ categories = ["api-bindings"]
cfg-if = "0.1"
libc = "0.2"

openssl-sys = { version = "0.9.42", path = "../openssl-sys" }
openssl-sys = { version = "0.9.64", path = "../openssl-sys" }

[dev-dependencies]
openssl = { version = "0.10.19", path = "../openssl" }