Skip to content

Commit

Permalink
Nakama 1.3.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
zyro committed Nov 21, 2017
1 parent 6c71bee commit ca88ea9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions tests/core_storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}

Expand Down

0 comments on commit ca88ea9

Please sign in to comment.