diff --git a/CHANGELOG.md b/CHANGELOG.md index ca226fa2..6c616030 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.10.1] - 2018-01-17 +### Fixed +- #244: Fix issue with points not being detected inside MultiPolygons (@fazlul3003) +- #245: Precalculate and store bboxes for complex objects (@huangpeizhi) +- #246: Fix server crash when receiving zero arg commands (@behrad) + ## [1.10.0] - 2017-12-18 ### Added - #221: Sqs endpoint (@lennycampino) diff --git a/README.md b/README.md index 637f61e1..ddced54c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@
diff --git a/build.sh b/build.sh index 025acff8..4c2d8c9b 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -VERSION="1.10.0" +VERSION="1.10.1" PROTECTED_MODE="no" # Hardcode some values to the core package diff --git a/docker/Dockerfile b/docker/Dockerfile index 246bb675..5ffad9b0 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.4 -ENV TILE38_VERSION 1.10.0 +ENV TILE38_VERSION 1.10.1 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