diff options
author | Brent Cook <busterb@gmail.com> | 2021-05-01 09:21:01 -0500 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2021-05-01 09:21:01 -0500 |
commit | 1e845f5071ce3eb58e6cab6e9a7c5156472074d3 (patch) | |
tree | ae968ec5a53744fe47c0b56f9321329c64f7e66d | |
parent | 2b4e5e6a7962900acba902a4762938bae6b1b9c0 (diff) | |
download | portable-1e845f5071ce3eb58e6cab6e9a7c5156472074d3.tar.gz portable-1e845f5071ce3eb58e6cab6e9a7c5156472074d3.tar.bz2 portable-1e845f5071ce3eb58e6cab6e9a7c5156472074d3.zip |
bump to 3.3.3 stable release
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | patches/opensslv.h | 18 |
2 files changed, 23 insertions, 0 deletions
@@ -28,6 +28,11 @@ history is also available from Git. | |||
28 | 28 | ||
29 | LibreSSL Portable Release Notes: | 29 | LibreSSL Portable Release Notes: |
30 | 30 | ||
31 | 3.3.3 - Stable release | ||
32 | |||
33 | * This is the first stable release from the 3.3.x series. | ||
34 | There are no changes from 3.3.2. | ||
35 | |||
31 | 3.3.2 - Development release | 36 | 3.3.2 - Development release |
32 | 37 | ||
33 | * This release adds support for DTLSv1.2 and continues the rewrite | 38 | * This release adds support for DTLSv1.2 and continues the rewrite |
diff --git a/patches/opensslv.h b/patches/opensslv.h new file mode 100644 index 0000000..cc5fe4d --- /dev/null +++ b/patches/opensslv.h | |||
@@ -0,0 +1,18 @@ | |||
1 | /* $OpenBSD: opensslv.h,v 1.61 2020/09/25 11:31:39 bcook Exp $ */ | ||
2 | #ifndef HEADER_OPENSSLV_H | ||
3 | #define HEADER_OPENSSLV_H | ||
4 | |||
5 | /* These will change with each release of LibreSSL-portable */ | ||
6 | #define LIBRESSL_VERSION_NUMBER 0x3030300fL | ||
7 | /* ^ Patch starts here */ | ||
8 | #define LIBRESSL_VERSION_TEXT "LibreSSL 3.3.3" | ||
9 | |||
10 | /* These will never change */ | ||
11 | #define OPENSSL_VERSION_NUMBER 0x20000000L | ||
12 | #define OPENSSL_VERSION_TEXT LIBRESSL_VERSION_TEXT | ||
13 | #define OPENSSL_VERSION_PTEXT " part of " OPENSSL_VERSION_TEXT | ||
14 | |||
15 | #define SHLIB_VERSION_HISTORY "" | ||
16 | #define SHLIB_VERSION_NUMBER "1.0.0" | ||
17 | |||
18 | #endif /* HEADER_OPENSSLV_H */ | ||