Skip to content

Commit f533aa1

Browse files
authored
Merge pull request #1849 from sfackler/libressl-371
Support LibreSSL 3.7.1
2 parents e62129f + 286320c commit f533aa1

File tree

2 files changed

+4
-23
lines changed

2 files changed

+4
-23
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -181,17 +181,7 @@ jobs:
181181
bindgen: true
182182
library:
183183
name: libressl
184-
version: 3.5.3
185-
- target: x86_64-unknown-linux-gnu
186-
bindgen: true
187-
library:
188-
name: libressl
189-
version: 3.6.1
190-
- target: x86_64-unknown-linux-gnu
191-
bindgen: true
192-
library:
193-
name: libressl
194-
version: 3.7.0
184+
version: 3.7.1
195185
- target: x86_64-unknown-linux-gnu
196186
bindgen: false
197187
library:
@@ -201,17 +191,7 @@ jobs:
201191
bindgen: false
202192
library:
203193
name: libressl
204-
version: 3.5.3
205-
- target: x86_64-unknown-linux-gnu
206-
bindgen: false
207-
library:
208-
name: libressl
209-
version: 3.6.1
210-
- target: x86_64-unknown-linux-gnu
211-
bindgen: false
212-
library:
213-
name: libressl
214-
version: 3.7.0
194+
version: 3.7.1
215195
name: ${{ matrix.target }}-${{ matrix.library.name }}-${{ matrix.library.version }}-${{ matrix.bindgen }}
216196
runs-on: ubuntu-latest
217197
env:

openssl-sys/build/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ See rust-openssl documentation for more information:
294294
(3, 6, 0) => ('3', '6', '0'),
295295
(3, 6, _) => ('3', '6', 'x'),
296296
(3, 7, 0) => ('3', '7', '0'),
297+
(3, 7, 1) => ('3', '7', '1'),
297298
_ => version_error(),
298299
};
299300

@@ -336,7 +337,7 @@ fn version_error() -> ! {
336337
"
337338
338339
This crate is only compatible with OpenSSL (version 1.0.1 through 1.1.1, or 3.0.0), or LibreSSL 2.5
339-
through 3.7.0, but a different version of OpenSSL was found. The build is now aborting
340+
through 3.7.1, but a different version of OpenSSL was found. The build is now aborting
340341
due to this version mismatch.
341342
342343
"

0 commit comments

Comments
 (0)