diff --git a/CHANGELOG.md b/CHANGELOG.md index c67759b..a4f9c1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ 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.0] - 2018-05-14 +### Added +- New browser headless test suite with Puppeteer. + +### Changed +- All source code now written in TypeScript. +- Rewrite client and socket model for Nakama 2.0. + +--- + ## [0.4.0] - 2018-02-02 ### Changed - Re-structure project for wider browser compatibility. diff --git a/README.md b/README.md index bdf538c..3979d1c 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ You'll need to setup the server and database before you can connect with the cli ```js // var client = new nakamajs.Client("defaultkey", "127.0.0.1", 7350); - client.ssl = false; // enable if server is run with an SSL certificate + client.ssl = false; // enable if server is run with an SSL certificate ``` ## Usage diff --git a/package.json b/package.json index 27b647f..5c217f0 100644 --- a/package.json +++ b/package.json @@ -3,10 +3,12 @@ "version": "2.0.0", "description": "JavaScript client for Nakama server written in TypeScript.", "keywords": [ - "realtime", - "realtime chat", + "app server", + "client library", + "game server", "nakama", - "game server" + "realtime", + "realtime chat" ], "homepage": "https://heroiclabs.com", "bugs": "https://github.com/heroiclabs/nakama-js/issues",