From df3b1923b67494b5a94716ebf0362cee46ac1791 Mon Sep 17 00:00:00 2001 From: Chris Molozian Date: Sat, 22 Apr 2017 16:26:22 +0100 Subject: [PATCH] Nakama 0.12.2 release. --- CHANGELOG.md | 16 ++++++++-------- Makefile | 2 +- RELEASEINST.md | 2 +- install/docker/README.md | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80e7f58740..32c8287254 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,19 +3,19 @@ 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] +## [0.12.2] - 2017-04-22 ### Added -- Added `--logtostdout` command line flag to redirect log output to terminal. +- Add `--logtostdout` flag to redirect log output to console. +- Add build rule to create Docker release images. ### Changed -- Updated Zap logging library to latest stable version. -- Command line `--verbose` flag no longer alters the logging output to print to both terminal and file. -- Log output format is set to JSON. -- Updated health endpoint to be on the '/' of the main server port. -- Streamline Docker image releases. +- Update Zap logging library to latest stable version. +- The `--verbose` flag no longer alters the logging output to print to both terminal and file. +- The log output is now in JSON format. +- Update the healthcheck endpoint to be "/" (root path) of the main server port. ### Fixed -- Fix issue where ping tickers could not have stopped correctly under some circumstances. +- Fix a race when the heartbeat ticker might not be stopped after a connection is closed. ## [0.12.1] - 2017-03-28 ### Added diff --git a/Makefile b/Makefile index ff9749cefd..7b73901fde 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ # limitations under the License. BINNAME := nakama -VERSION := 0.13.0-dev +VERSION := 0.12.2 BUILDDIR := build COMMITID := $(shell git rev-parse --short HEAD 2>/dev/null || echo nosha) DOCKERDIR := install/docker/nakama diff --git a/RELEASEINST.md b/RELEASEINST.md index 64e445c181..133c59302c 100644 --- a/RELEASEINST.md +++ b/RELEASEINST.md @@ -76,7 +76,7 @@ The development team use these steps to build and upload a release. git add Makefile CHANGELOG.md git commit -m "Set new development version." git push origin master - ``` + ``` ### Package Managers diff --git a/install/docker/README.md b/install/docker/README.md index 06df609f48..30c96e5e60 100644 --- a/install/docker/README.md +++ b/install/docker/README.md @@ -44,7 +44,7 @@ To stop and purge all stored data, containers, and images from your machine. Run ## Build and deploy the Docker image -#### You can use the makefile to build, tag and release Docker images. The following is the manual way of doing achieving the same result. +You can use the Makefile to build Docker images. These steps show a manual way to create your own Docker images of Nakama server. 1. To build the image locally. Setup a local copy of the codebase. Run the following command (in the same directory as this README):