Skip to content

Commit 987c9aa

Browse files
authored
Merge pull request #1935 from vishwin/master
LibreSSL 3.8.0
2 parents 14b6ad5 + e41a132 commit 987c9aa

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,12 @@ jobs:
181181
bindgen: true
182182
library:
183183
name: libressl
184-
version: 3.7.2
184+
version: 3.7.3
185+
- target: x86_64-unknown-linux-gnu
186+
bindgen: true
187+
library:
188+
name: libressl
189+
version: 3.8.0
185190
- target: x86_64-unknown-linux-gnu
186191
bindgen: false
187192
library:
@@ -191,7 +196,12 @@ jobs:
191196
bindgen: false
192197
library:
193198
name: libressl
194-
version: 3.7.2
199+
version: 3.7.3
200+
- target: x86_64-unknown-linux-gnu
201+
bindgen: false
202+
library:
203+
name: libressl
204+
version: 3.8.0
195205
name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}-${{ matrix.bindgen }}
196206
runs-on: ubuntu-latest
197207
env:

openssl-sys/build/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ See rust-openssl documentation for more information:
285285
(3, 7, 0) => ('3', '7', '0'),
286286
(3, 7, 1) => ('3', '7', '1'),
287287
(3, 7, _) => ('3', '7', 'x'),
288+
(3, 8, 0) => ('3', '8', '0'),
288289
_ => version_error(),
289290
};
290291

@@ -327,7 +328,7 @@ fn version_error() -> ! {
327328
"
328329
329330
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3.0.0), or LibreSSL 2.5
330-
through 3.7.x, but a different version of OpenSSL was found. The build is now aborting
331+
through 3.8.0, but a different version of OpenSSL was found. The build is now aborting
331332
due to this version mismatch.
332333
333334
"

0 commit comments

Comments
 (0)