diff --git a/CHANGELOG.md b/CHANGELOG.md index 4256c412..82c03b43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.9.0] - 2017-04-13 +### Added +- #159: AMQP/RabbitMQ webhook support (@m1ome, @paavalan) +- #152: Kafka webhook support (@m1ome) +- #141: Add distances to Geofence notifications +- #54: New benchmark tool (@literadix, @Lars-Meijer, @m1ome) +- #20: Ability to specify pidfile via args (@olevole) + +### Fixed +- #b1c76d: tile38-cli auto doesn't auto reconnect +- #156: Use redis-style TTL implementation (@Lars-Meijer, @m1ome) +- #150: Live "inside" fence event not triggering for new object (@phulst) + ## [1.8.0] - 2017-02-21 ### Added - #145: TCP Keepalives option (@UriHendler) diff --git a/README.md b/README.md index c200c1b8..bd83752b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

Gitter -Version +Version Build Status Docker Ready

diff --git a/build.sh b/build.sh index 93701d86..34caf0fd 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -VERSION="1.8.0" +VERSION="1.9.0" PROTECTED_MODE="no" # Hardcode some values to the core package diff --git a/docker/Dockerfile b/docker/Dockerfile index ff14c3be..d8f6b5a3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.4 -ENV TILE38_VERSION 1.8.0 +ENV TILE38_VERSION 1.9.0 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