diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 144facec..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,22 +0,0 @@ -image: -- Visual Studio 2017 - -install: -- cd C:\Tools\vcpkg -- git pull -- .\bootstrap-vcpkg.bat -- cd %APPVEYOR_BUILD_FOLDER% -- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" -- vcpkg install zlib:x64-windows -- vcpkg install mbedtls:x64-windows -- mkdir build -- cd build -- cmake -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DUSE_WS=1 -DUSE_TEST=1 -DUSE_TLS=1 -G"NMake Makefiles" .. -- nmake -- cd .. -- cd test -- ..\build\test\ixwebsocket_unittest.exe - -cache: c:\tools\vcpkg\installed\ - -build: off diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 80d5daa2..4bd4c69d 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,10 @@ All changes to this project will be documented in this file. +## [11.3.2] - 2021-11-24 + +(server) Add getters for basic Servers properties (like port, host, etc...) (#327) + fix one compiler warning + ## [11.3.1] - 2021-10-22 (library/cmake) Compatible with MbedTLS 3 + fix a bug on Windows where the incorrect remote port is computed (#320) diff --git a/ixwebsocket/IXWebSocketVersion.h b/ixwebsocket/IXWebSocketVersion.h index 5c338a7e..ccaec845 100644 --- a/ixwebsocket/IXWebSocketVersion.h +++ b/ixwebsocket/IXWebSocketVersion.h @@ -6,4 +6,4 @@ #pragma once -#define IX_WEBSOCKET_VERSION "11.3.1" +#define IX_WEBSOCKET_VERSION "11.3.2"