Skip to content

Commit b29c7ea

Browse files
authored
Merge pull request #1176 from vishwin/master
Support LibreSSL 3.0.2
2 parents ff14649 + f66c860 commit b29c7ea

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,10 +292,10 @@ workflows:
292292
library: libressl
293293
version: 2.5.5
294294
- linux:
295-
name: x86_64-libressl-3.0.1
295+
name: x86_64-libressl-3.0.2
296296
target: x86_64-unknown-linux-gnu
297297
library: libressl
298-
version: 3.0.1
298+
version: 3.0.2
299299
- macos:
300300
name: macos
301301
- macos:

openssl-sys/build/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ See rust-openssl README for more information:
203203
(2, 9, _) => ('2', '9', 'x'),
204204
(3, 0, 0) => ('3', '0', '0'),
205205
(3, 0, 1) => ('3', '0', '1'),
206+
(3, 0, _) => ('3', '0', 'x'),
206207
_ => version_error(),
207208
};
208209

@@ -243,7 +244,7 @@ fn version_error() -> ! {
243244
"
244245
245246
This crate is only compatible with OpenSSL 1.0.1 through 1.1.1, or LibreSSL 2.5
246-
through 3.0.1, but a different version of OpenSSL was found. The build is now aborting
247+
through 3.0.x, but a different version of OpenSSL was found. The build is now aborting
247248
due to this version mismatch.
248249
249250
"

0 commit comments

Comments
 (0)