From c352c6ac0725e81b4f8fc47ee9cc811a75e276c5 Mon Sep 17 00:00:00 2001 From: dimon4eg Date: Wed, 1 May 2019 22:03:56 +0300 Subject: [PATCH] Nakama C++ 2.0.3 release. --- CHANGELOG.md | 8 ++++++++ src/CMakeLists.txt | 2 +- src/Nakama.cpp | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f4830045..59f9b22f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project are documented below. The format is based on [keep a changelog](http://keepachangelog.com/) and this project uses [semantic versioning](http://semver.org/). +## [2.0.3] - 2019-05-01 +### Added +- support Visual Studio 2019. +- support build as shared lib (DLL) + +### Fixed +- enable SSL for IXWebsocket. + ## [2.0.2] - 2019-04-12 ### Added - SSL support. diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index b02f955d3..c2e5c14fd 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -17,7 +17,7 @@ cmake_minimum_required(VERSION 3.10) cmake_policy(SET CMP0074 NEW) -project(nakama-cpp VERSION 2.0.2 DESCRIPTION "Nakama C++ Client" LANGUAGES CXX) +project(nakama-cpp VERSION 2.0.3 DESCRIPTION "Nakama C++ Client" LANGUAGES CXX) include(windows_support) diff --git a/src/Nakama.cpp b/src/Nakama.cpp index 63f62e9c6..79ceb64a8 100644 --- a/src/Nakama.cpp +++ b/src/Nakama.cpp @@ -20,7 +20,7 @@ namespace Nakama { const char* getNakamaSdkVersion() { - return "2.0.2"; + return "2.0.3"; } }