forked from OpenVPN/openvpn
-
Notifications
You must be signed in to change notification settings - Fork 0
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 Signed-off-by: Gert Doering <[email protected]>
- Loading branch information
Showing
2 changed files
with
21 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,25 @@ | ||
OpenVPN Change Log | ||
Copyright (C) 2002-2020 OpenVPN Inc <[email protected]> | ||
|
||
2020.09.30 -- Version 2.5_rc2 | ||
|
||
Lev Stipakov (1): | ||
Alias ADAPTER_DOMAIN_SUFFIX to DOMAIN | ||
|
||
Selva Nair (2): | ||
Set DNS Domain using iservice | ||
Improve documentation of --username-as-common-name | ||
|
||
Simon Rozman (4): | ||
netsh: Specify interfaces by index rather than name | ||
netsh: Clear existing IPv6 DNS servers before configuring new ones | ||
netsh: Delete WINS servers on TUN close | ||
openvpnmsica: Simplify find_adapters() to void return | ||
|
||
Vladislav Grishenko (1): | ||
Fix update_time() and openvpn_gettimeofday() coexistence | ||
|
||
|
||
2020.09.21 -- Version 2.5_rc1 | ||
|
||
David Sommerseth (4): | ||
|
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], [5]) | ||
define([PRODUCT_VERSION_PATCH], [_rc1]) | ||
define([PRODUCT_VERSION_PATCH], [_rc2]) | ||
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,5,0,5]) | ||
define([PRODUCT_VERSION_RESOURCE], [2,5,0,6]) | ||
dnl define the TAP version | ||
define([PRODUCT_TAP_WIN_COMPONENT_ID], [tap0901]) | ||
define([PRODUCT_TAP_WIN_MIN_MAJOR], [9]) | ||
|