Skip to content

Commit

Permalink
Bump LibreSSL to 3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwin committed Apr 20, 2021
1 parent 127413a commit ef515d7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
- target: x86_64-unknown-linux-gnu
library:
name: libressl
version: 3.3.1
version: 3.3.2
name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}
runs-on: ubuntu-latest
env:
Expand Down
3 changes: 2 additions & 1 deletion openssl-sys/build/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ See rust-openssl README for more information:
(3, 2, _) => ('3', '2', 'x'),
(3, 3, 0) => ('3', '3', '0'),
(3, 3, 1) => ('3', '3', '1'),
(3, 3, 2) => ('3', '3', '2'),
_ => version_error(),
};

Expand Down Expand Up @@ -272,7 +273,7 @@ fn version_error() -> ! {
"
This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
through 3.3.1, but a different version of OpenSSL was found. The build is now aborting
through 3.3.2, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.
"
Expand Down
2 changes: 1 addition & 1 deletion openssl/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Bindings to OpenSSL
//!
//! This crate provides a safe interface to the popular OpenSSL cryptography library. OpenSSL versions 1.0.1 through
//! 1.1.1 and LibreSSL versions 2.5 through 3.3.1 are supported.
//! 1.1.1 and LibreSSL versions 2.5 through 3.3.2 are supported.
//!
//! # Building
//!
Expand Down

0 comments on commit ef515d7

Please sign in to comment.