From af0104da0ceb830eae2c8961ee82c43a81bc8c05 Mon Sep 17 00:00:00 2001
From: Josh Baker
Date: Fri, 13 Jan 2017 10:25:41 -0700
Subject: [PATCH] 1.7.5
---
CHANGELOG.md | 15 +++++++++++++++
README.md | 2 +-
build.sh | 2 +-
docker/Dockerfile | 2 +-
4 files changed, 18 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2235dbd6..bfe60604 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,21 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
+## [1.7.5] - 2017-01-13
+### Added
+- Performance bump for all SET commands, ~10% faster
+- Lower memory footprint for large datasets
+- #112: Added distance to NEARBY command (@m1ome, @auselen)
+- #123: Redis endpoint for webhooks (@m1ome)
+- #128: Allow disabling HTTP & WebSocket transport (@m1ome)
+
+### Fixed
+- #116: Missing response in TTL json command (@phulst)
+- #117: Error in command documentation (@juanpabloaj)
+- #118: Unexpected EOF bug with websockets (@m1ome)
+- #122: Disque typo timeout handling (@m1ome)
+- #127: 3d object searches with 2d geojson area (@damariei)
+
## [1.7.0] - 2016-12-29
### Added
- #104: PDEL command - Selete objects that match a pattern (@GameFreedom)
diff --git a/README.md b/README.md
index 199febb7..5a195b03 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
-
+
diff --git a/build.sh b/build.sh
index d68ebe58..f3440e67 100755
--- a/build.sh
+++ b/build.sh
@@ -1,7 +1,7 @@
#!/bin/bash
set -e
-VERSION="1.7.0"
+VERSION="1.7.5"
PROTECTED_MODE="no"
# Hardcode some values to the core package
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 714d4c83..aecaf26d 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -1,6 +1,6 @@
FROM alpine:3.4
-ENV TILE38_VERSION 1.7.0
+ENV TILE38_VERSION 1.7.5
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