diff options
author | 2019-07-05 07:55:13 +0200 | |
---|---|---|
committer | 2019-07-06 07:59:47 +0200 | |
commit | a2ef6db17467038d29ae6513ce8fd52b8c5a0840 (patch) | |
tree | 05cce2a3b7e8adb09897f2ff9b641df86607799a | |
parent | version: bump (diff) | |
download | wireguard-windows-a2ef6db17467038d29ae6513ce8fd52b8c5a0840.tar.xz wireguard-windows-a2ef6db17467038d29ae6513ce8fd52b8c5a0840.zip |
version: bumpv0.0.17
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r-- | go.mod | 2 | ||||
-rw-r--r-- | installer/build.bat | 4 | ||||
-rw-r--r-- | version.h | 4 |
3 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ module golang.zx2c4.com/wireguard/windows require ( - golang.zx2c4.com/wireguard 13abbdf14bda7ef4ee5739d28bb61dc449cf67bc + golang.zx2c4.com/wireguard 5c3d333f10c7238cae9b8ed1aabdb8c8ab6a7ebc golang.org/x/crypto latest golang.org/x/net latest diff --git a/installer/build.bat b/installer/build.bat index 759f73fe..18e2a417 100644 --- a/installer/build.bat +++ b/installer/build.bat @@ -22,8 +22,8 @@ if exist .deps\prepared goto :build rmdir /s /q .deps 2> NUL mkdir .deps || goto :error cd .deps || goto :error - call :download wintun-x86.msm https://www.wintun.net/builds/wintun-x86-0.3.msm c598a085c4fb785a7506a6ac8c6637f33fe83871612d4cf33a1732d9a3601a72 || goto :error - call :download wintun-amd64.msm https://www.wintun.net/builds/wintun-amd64-0.3.msm d27359e283d168c4fa08ad5b3e09782399ed3abca6367e2482370b52ee03646b || goto :error + call :download wintun-x86.msm https://www.wintun.net/builds/wintun-x86-0.4.msm 9c409c0f189967a69ce8a1365411e3430bde86798f09095f490cbecad9423036 || goto :error + call :download wintun-amd64.msm https://www.wintun.net/builds/wintun-amd64-0.4.msm 295ec9e3217fadb94e457a02381053ef0e13c7b4c235e3c769c02c6b212c0608 || goto :error call :download wix-binaries.zip http://wixtoolset.org/downloads/v3.14.0.2812/wix314-binaries.zip 923892298f37514622c58cbbd9c2cadf2822d9bb53df8ee83aaeb05280777611 || goto :error echo [+] Extracting wix-binaries.zip mkdir wix\bin || goto :error @@ -1,2 +1,2 @@ -#define WIREGUARD_WINDOWS_VERSION_ARRAY 0,0,16 -#define WIREGUARD_WINDOWS_VERSION_STRING "0.0.16" +#define WIREGUARD_WINDOWS_VERSION_ARRAY 0,0,17 +#define WIREGUARD_WINDOWS_VERSION_STRING "0.0.17" |