Skip to content

Commit

Permalink
Nakama C++ 2.0.3 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimon4eg committed May 1, 2019
1 parent 908560f commit c352c6a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion src/Nakama.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace Nakama {

const char* getNakamaSdkVersion()
{
return "2.0.2";
return "2.0.3";
}

}

0 comments on commit c352c6a

Please sign in to comment.