From 9cdbea19c10fcc7476ad59f1fb1e802e92bfbbaa Mon Sep 17 00:00:00 2001
From: Josh Baker
Date: Wed, 16 Aug 2017 10:02:56 -0700
Subject: [PATCH] 1.9.1
---
CHANGELOG.md | 20 +++++++++++++++++++-
README.md | 2 +-
build.sh | 2 +-
docker/Dockerfile | 2 +-
4 files changed, 22 insertions(+), 4 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 82c03b43..396af989 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,24 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [1.9.1] - 2017-08-16
+### Added
+- cd05708: Spatial index optimizations
+- #208: Debug message for failed webhook notifications (@karnivas)
+- #201: New ECHO command (@yorkxiao)
+- #183: Include tile38-cli in Docker image (@jchamberlain)
+- #121: Allow reads for disconnected followers (@octete)
+
+### Fixed
+- 3fae3f7: Allow cursors for kNN queries
+- #211: Crash when shrinking AOF on Windows (@icewukong)
+- #203: Lifted LIMIT restriction all queries and COUNT keyword (@yorkxiao, @FX-HAO)
+- #207: Send empty results for queries on nonexistent keys (@FX-HAO)
+- #195: Added kNN overscan ordering (@rshura)
+- #199: Apply LIMIT after WHERE clause (@rshura)
+- #199: Require Go 1.7 (@rshura)
+- #198: Omit fields for Resp when NOFIELDS is used (@rshura)
+
## [1.9.0] - 2017-04-13
### Added
- #159: AMQP/RabbitMQ webhook support (@m1ome, @paavalan)
@@ -11,7 +29,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- #20: Ability to specify pidfile via args (@olevole)
### Fixed
-- #b1c76d: tile38-cli auto doesn't auto reconnect
+- b1c76d7: 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)
diff --git a/README.md b/README.md
index 3f3b42bf..40b7514e 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
-
+
diff --git a/build.sh b/build.sh
index 50f19630..c901eae3 100755
--- a/build.sh
+++ b/build.sh
@@ -1,7 +1,7 @@
#!/bin/bash
set -e
-VERSION="1.9.0"
+VERSION="1.9.1"
PROTECTED_MODE="no"
# Hardcode some values to the core package
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 6bc7b543..5b25fc9e 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -1,6 +1,6 @@
FROM alpine:3.4
-ENV TILE38_VERSION 1.9.0
+ENV TILE38_VERSION 1.9.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