diff --git a/openssl-sys/CHANGELOG.md b/openssl-sys/CHANGELOG.md index 4253b07659a91bd7035c6e5c8615ce5609a947bf..3937c1e4a6e4e182fd3ca0f00672dff35cdfa8c5 100644 --- a/openssl-sys/CHANGELOG.md +++ b/openssl-sys/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [v0.9.49] - 2019-08-15 + +### Added + +* Added support for LibreSSL 3.0.0. + ## [v0.9.48] - 2019-07-19 ### Added diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index f97015a41a6cc97e05234b0bbd1423c7d6983b4b..6e7350358bb1a5d65034017ad9cfda58383ac4b4 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openssl-sys" -version = "0.9.48" +version = "0.9.49" authors = ["Alex Crichton ", "Steven Fackler "] license = "MIT" diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index 0f1247215071384daec0f1908aa81be6dffb551b..36d21007995f743b98ca825ed153f2ee25693d26 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -25,7 +25,7 @@ foreign-types = "0.3.1" lazy_static = "1" libc = "0.2" -openssl-sys = { version = "0.9.48", path = "../openssl-sys" } +openssl-sys = { version = "0.9.49", path = "../openssl-sys" } [dev-dependencies] tempdir = "0.3"