From 1bb847a51cc54fc6417831a5a6c8b4e245923b4a Mon Sep 17 00:00:00 2001 From: Benjamin Sergeant Date: Wed, 12 Feb 2020 11:21:46 -0800 Subject: [PATCH] bump version for #154 fix which was about removing the unused subtree which was causing some way of installing to break --- docs/CHANGELOG.md | 4 ++++ docs/build.md | 10 ++++++++++ ixwebsocket/IXWebSocketVersion.h | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index e377bfbc..46953b98 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All changes to this project will be documented in this file. +## [8.0.7] - 2020-02-12 + +(build) remove the unused subtree which was causing some way of installing to break + ## [8.0.6] - 2020-01-31 (snake) add an option to disable answering pongs as response to pings, to test cobra client behavior with hanged connections diff --git a/docs/build.md b/docs/build.md index f8b6f5c5..cb35ecc5 100644 --- a/docs/build.md +++ b/docs/build.md @@ -23,6 +23,16 @@ Options for building: If you are on Windows, look at the [appveyor](https://github.com/machinezone/IXWebSocket/blob/master/appveyor.yml) file that has instructions for building dependencies. +It is also possible to externally include the project, so that everything is fetched over the wire when you build like so: + +``` + ExternalProject_Add( + IXWebSocket + GIT_REPOSITORY https://github.com/machinezone/IXWebSocket.git + ... + ) +``` + ### vcpkg It is possible to get IXWebSocket through Microsoft [vcpkg](https://github.com/microsoft/vcpkg). diff --git a/ixwebsocket/IXWebSocketVersion.h b/ixwebsocket/IXWebSocketVersion.h index ec9dce47..594fbc7a 100644 --- a/ixwebsocket/IXWebSocketVersion.h +++ b/ixwebsocket/IXWebSocketVersion.h @@ -6,4 +6,4 @@ #pragma once -#define IX_WEBSOCKET_VERSION "8.0.5" +#define IX_WEBSOCKET_VERSION "8.0.7"