Skip to content

Commit da9ef33

Browse files
authored
Merge pull request #2209 from alex/libressl-39x
Support stable LibreSSL 3.9.x
2 parents 450110f + f167eed commit da9ef33

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
bindgen: true
189189
library:
190190
name: libressl
191-
version: 3.9.0
191+
version: 3.9.1
192192
- target: x86_64-unknown-linux-gnu
193193
bindgen: false
194194
library:
@@ -208,7 +208,7 @@ jobs:
208208
bindgen: false
209209
library:
210210
name: libressl
211-
version: 3.9.0
211+
version: 3.9.1
212212
name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}-${{ matrix.bindgen }}
213213
runs-on: ubuntu-latest
214214
env:

openssl-sys/build/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ See rust-openssl documentation for more information:
303303
(3, 8, 1) => ('3', '8', '1'),
304304
(3, 8, _) => ('3', '8', 'x'),
305305
(3, 9, 0) => ('3', '9', '0'),
306+
(3, 9, _) => ('3', '9', 'x'),
306307
_ => version_error(),
307308
};
308309

@@ -345,7 +346,7 @@ fn version_error() -> ! {
345346
"
346347
347348
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3), or LibreSSL 2.5
348-
through 3.9.0, but a different version of OpenSSL was found. The build is now aborting
349+
through 3.9.x, but a different version of OpenSSL was found. The build is now aborting
349350
due to this version mismatch.
350351
351352
"

0 commit comments

Comments
 (0)