-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version.m4, ChangeLog, Changes.rst Signed-off-by: Gert Doering <[email protected]>
- Loading branch information
Showing
3 changed files
with
46 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,23 @@ | ||
OpenVPN ChangeLog | ||
Copyright (C) 2002-2023 OpenVPN Inc <[email protected]> | ||
|
||
2023.11.17 -- Version 2.6.8 | ||
|
||
Aquila Macedo (1): | ||
doc: Correct typos in multiple documentation files | ||
|
||
Arne Schwabe (1): | ||
Do not check key_state buffers that are in S_UNDEF state | ||
|
||
Frank Lichtenheld (1): | ||
platform.c: Do not depend Windows build on HAVE_CHDIR | ||
|
||
Lev Stipakov (3): | ||
config.h: fix incorrect defines for _wopen() | ||
Make --dns options apply for tap-windows6 driver | ||
Warn if pushed options require DHCP | ||
|
||
|
||
2023.11.08 -- Version 2.6.7 | ||
|
||
Antonio Quartulli (1): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ define([PRODUCT_NAME], [OpenVPN]) | |
define([PRODUCT_TARNAME], [openvpn]) | ||
define([PRODUCT_VERSION_MAJOR], [2]) | ||
define([PRODUCT_VERSION_MINOR], [6]) | ||
define([PRODUCT_VERSION_PATCH], [.7]) | ||
define([PRODUCT_VERSION_PATCH], [.8]) | ||
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MAJOR]) | ||
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_MINOR], [[.]]) | ||
m4_append([PRODUCT_VERSION], [PRODUCT_VERSION_PATCH], [[]]) | ||
define([PRODUCT_BUGREPORT], [[email protected]]) | ||
define([PRODUCT_VERSION_RESOURCE], [2,6,7,0]) | ||
define([PRODUCT_VERSION_RESOURCE], [2,6,8,0]) | ||
dnl define the TAP version | ||
define([PRODUCT_TAP_WIN_COMPONENT_ID], [tap0901]) | ||
define([PRODUCT_TAP_WIN_MIN_MAJOR], [9]) | ||
|