diff --git a/CHANGELOG.md b/CHANGELOG.md index 962ff4a3ca..f762b830fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ 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.3.0] - 2017-11-21 ### Added - Improve graceful shutdown behaviour by ensuring the server stops accepting connections before halting other components. - Add User-Agent to the default list of accepted CORS request headers. diff --git a/Makefile b/Makefile index 0b4a8f7b8e..3c3d709940 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. BINNAME := nakama -VERSION := 1.3.0-dev +VERSION := 1.3.0 BUILDDIR := build COMMITID := $(shell git rev-parse --short HEAD 2>/dev/null || echo nosha) DOCKERDIR := install/docker/nakama diff --git a/tests/core_storage_test.go b/tests/core_storage_test.go index 68c901e14a..10c2852200 100644 --- a/tests/core_storage_test.go +++ b/tests/core_storage_test.go @@ -2624,9 +2624,9 @@ func TestStorageListRuntimeUser(t *testing.T) { assert.Equal(t, 0, int(code), "code was not 0") assert.NotNil(t, values, "values was nil") assert.Len(t, values, 3, "values length was not 3") - assert.Equal(t, "c", values[0].Record, "values[0].Record was not c") - assert.Equal(t, "a", values[1].Record, "values[1].Record was not a") - assert.Equal(t, "b", values[2].Record, "values[2].Record was not b") + assert.Equal(t, "a", values[0].Record, "values[0].Record was not a") + assert.Equal(t, "b", values[1].Record, "values[1].Record was not b") + assert.Equal(t, "c", values[2].Record, "values[2].Record was not c") assert.Equal(t, "", cursor, "cursor was not nil") }