Merge pull request #1260 from sfackler/libre-31

Support LibreSSL 3.1.0
This commit is contained in:
Steven Fackler 2020-04-19 07:34:06 -04:00 committed by GitHub
commit 03701506f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -298,10 +298,10 @@ workflows:
library: libressl
version: 2.5.5
- linux:
name: x86_64-libressl-3.0.2
name: x86_64-libressl-3.1.0
target: x86_64-unknown-linux-gnu
library: libressl
version: 3.0.2
version: 3.1.0
- macos:
name: macos
- macos:

View File

@ -216,6 +216,7 @@ See rust-openssl README for more information:
(3, 0, 0) => ('3', '0', '0'),
(3, 0, 1) => ('3', '0', '1'),
(3, 0, _) => ('3', '0', 'x'),
(3, 1, 0) => ('3', '1', '0'),
_ => version_error(),
};