Skip to content

Commit

Permalink
LibreSSL 3.8.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
alex committed Sep 1, 2023
1 parent 00dacb9 commit a692a27
Show file tree
Hide file tree
Showing 2 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 @@ -202,7 +202,7 @@ jobs:
bindgen: false
library:
name: libressl
version: 3.8.0
version: 3.8.1
name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}-${{ matrix.bindgen }}
runs-on: ubuntu-latest
env:
Expand Down
5 changes: 3 additions & 2 deletions openssl-sys/build/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,6 +273,7 @@ See rust-openssl documentation for more information:
(3, 7, 1) => ('3', '7', '1'),
(3, 7, _) => ('3', '7', 'x'),
(3, 8, 0) => ('3', '8', '0'),
(3, 8, 1) => ('3', '8', '1'),
_ => version_error(),
};

Expand Down Expand Up @@ -314,8 +315,8 @@ fn version_error() -> ! {
panic!(
"
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3.0.0), or LibreSSL 2.5
through 3.8.0, but a different version of OpenSSL was found. The build is now aborting
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3), or LibreSSL 2.5
through 3.8.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 a692a27

Please sign in to comment.