From 7590498c4ffbf6d55ce43aa4226fc4b9892d880a Mon Sep 17 00:00:00 2001
From: Josh Baker
Date: Thu, 17 Nov 2016 09:22:17 -0700
Subject: [PATCH] 1.5.4
---
CHANGELOG.md | 4 ++++
README.md | 2 +-
build.sh | 4 +++-
docker/Dockerfile | 2 +-
4 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5a4fb6e3..2b838155 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [1.5.4] - 2016-11-17
+### Fixed
+- #84: Hotfix - roaming fence deadlock
+
## [1.5.3] - 2016-11-16
### Added
- #4: Official docker support
diff --git a/README.md b/README.md
index b7b72471..64416123 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
-
+
Tile38 is an open source (MIT licensed), in-memory geolocation data store, spatial index, and realtime geofence. It supports a variety of object types including lat/lon points, bounding boxes, XYZ tiles, Geohashes, and GeoJSON.
diff --git a/build.sh b/build.sh
index 6cf8269c..2413f4b1 100755
--- a/build.sh
+++ b/build.sh
@@ -1,7 +1,7 @@
#!/bin/bash
set -e
-VERSION="1.5.3"
+VERSION="1.5.4"
PROTECTED_MODE="no"
# Hardcode some values to the core package
@@ -83,6 +83,8 @@ package(){
mv tile38-cli packages/$bdir
fi
cp README.md packages/$bdir
+ cp CHANGELOG.md packages/$bdir
+ cp LICENSE packages/$bdir
cd packages
if [ "$2" == "linux" ]; then
tar -zcf $bdir.tar.gz $bdir
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 22a03700..2e5d47f8 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -1,6 +1,6 @@
FROM alpine:3.4
-ENV TILE38_VERSION 1.5.3
+ENV TILE38_VERSION 1.5.4
ENV TILE38_DOWNLOAD_URL https://github.com/tidwall/tile38/releases/download/$TILE38_VERSION/tile38-$TILE38_VERSION-linux-amd64.tar.gz
RUN addgroup -S tile38 && adduser -S -G tile38 tile38