Skip to content

Commit ee3b024

Browse files
authored
Merge pull request #2315 from botovq/libressl-4.0.0
LibreSSL 4.0.0
2 parents 1b51ba5 + c4dabc2 commit ee3b024

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -184,17 +184,17 @@ jobs:
184184
bindgen: true
185185
library:
186186
name: libressl
187-
version: 3.7.3
187+
version: 3.8.4
188188
- target: x86_64-unknown-linux-gnu
189189
bindgen: true
190190
library:
191191
name: libressl
192-
version: 3.8.3
192+
version: 3.9.2
193193
- target: x86_64-unknown-linux-gnu
194194
bindgen: true
195195
library:
196196
name: libressl
197-
version: 3.9.1
197+
version: 4.0.0
198198
- target: x86_64-unknown-linux-gnu
199199
bindgen: false
200200
library:
@@ -204,17 +204,17 @@ jobs:
204204
bindgen: false
205205
library:
206206
name: libressl
207-
version: 3.7.3
207+
version: 3.8.4
208208
- target: x86_64-unknown-linux-gnu
209209
bindgen: false
210210
library:
211211
name: libressl
212-
version: 3.8.3
212+
version: 3.9.2
213213
- target: x86_64-unknown-linux-gnu
214214
bindgen: false
215215
library:
216216
name: libressl
217-
version: 3.9.1
217+
version: 4.0.0
218218
name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}-${{ matrix.bindgen }}
219219
runs-on: ubuntu-latest
220220
env:

openssl-sys/build/main.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,8 @@ See rust-openssl documentation for more information:
380380
(3, 8, _) => ('3', '8', 'x'),
381381
(3, 9, 0) => ('3', '9', '0'),
382382
(3, 9, _) => ('3', '9', 'x'),
383+
(4, 0, 0) => ('4', '0', '0'),
384+
(4, 0, _) => ('4', '0', 'x'),
383385
_ => version_error(),
384386
};
385387

@@ -422,7 +424,7 @@ fn version_error() -> ! {
422424
"
423425
424426
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3), or LibreSSL 2.5
425-
through 3.9.x, but a different version of OpenSSL was found. The build is now aborting
427+
through 4.0.x, but a different version of OpenSSL was found. The build is now aborting
426428
due to this version mismatch.
427429
428430
"

0 commit comments

Comments
 (0)