diff --git a/CHANGELOG.md b/CHANGELOG.md index 647bb1f226..5e619c4abc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,17 +3,17 @@ 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/). -## [Unreleased] +## [1.0.1] - 2017-08-05 ### Added -- New script runtime functions to convert UUIDs between byte and string representations. +- New code runtime functions to convert UUIDs between byte and string representations. ### Changed - Improve index selection in storage list operations. - Payloads in `register_before` hooks now use `PascalCase` field names and expose correctly formatted IDs. -- Metadata regions in users, groups, and leaderboard records are now exposed to the script runtime as Lua tables. +- Metadata regions in users, groups, and leaderboard records are now exposed to the code runtime as Lua tables. ### Fixed -- Script runtime batch user update operations now process correctly. +- The code runtime batch user update operations now process correctly. ## [1.0.0] - 2017-08-01 ### Added diff --git a/Makefile b/Makefile index 2a9fb1cb42..7dc546528d 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. BINNAME := nakama -VERSION := 1.1.0-dev +VERSION := 1.0.1 BUILDDIR := build COMMITID := $(shell git rev-parse --short HEAD 2>/dev/null || echo nosha) DOCKERDIR := install/docker/nakama