diff --git a/CHANGELOG.md b/CHANGELOG.md index b40ad99b..5a4fb6e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.5.3] - 2016-11-16 +### Added +- #4: Official docker support +### Fixed +- #77: NX/XX bug +- #76: Match on prefix star +- #82: Allow for precise search for strings +- #83: Faster congruent modulo for points + ## [1.5.2] - 2016-10-20 ### Fixed - #70: Invalid results for INTERSECTS query diff --git a/README.md b/README.md index 9b91656a..b41ba288 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

Build Status -Version +Version

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 4db034ad..6cf8269c 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -VERSION="1.5.2" +VERSION="1.5.3" PROTECTED_MODE="no" # Hardcode some values to the core package diff --git a/docker/Dockerfile b/docker/Dockerfile index 6f6ba38d..22a03700 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.4 -ENV TILE38_VERSION 1.5.2 +ENV TILE38_VERSION 1.5.3 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