Commit ca88ea9c authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Nakama 1.3.0 release.

parent 6c71beeb
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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.
+1 −1
Original line number Diff line number Diff line
@@ -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
+3 −3
Original line number Diff line number Diff line
@@ -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")
}