Skip to content

Commit

Permalink
Support LibreSSL 3.3.1
Browse files Browse the repository at this point in the history
This release, along with 3.2.3 and 3.1.5, is only a security fix.
  • Loading branch information
vishwin committed Dec 9, 2020
1 parent 92de374 commit d71a757
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,10 @@ workflows:
library: libressl
version: 2.5.5
- linux:
name: x86_64-libressl-3.3.0
name: x86_64-libressl-3.3.1
target: x86_64-unknown-linux-gnu
library: libressl
version: 3.3.0
version: 3.3.1
- macos:
name: macos
- macos:
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 @@ -225,6 +225,7 @@ See rust-openssl README for more information:
(3, 2, 1) => ('3', '2', '1'),
(3, 2, _) => ('3', '2', 'x'),
(3, 3, 0) => ('3', '3', '0'),
(3, 3, 1) => ('3', '3', '1'),
_ => version_error(),
};

Expand Down Expand Up @@ -265,7 +266,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.0, but a different version of OpenSSL was found. The build is now aborting
through 3.3.1, but a different version of OpenSSL was found. The build is now aborting
due to this version mismatch.
"
Expand Down

0 comments on commit d71a757

Please sign in to comment.