From 58fd5d4060d02276603a7180b85317a02a9fb3e5 Mon Sep 17 00:00:00 2001 From: Javier Goizueta Date: Mon, 30 May 2016 10:45:12 +0200 Subject: [PATCH] Release 0.16.4 --- Makefile | 3 ++- NEWS.md | 14 ++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3689a65..cafb35c 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # cartodb/Makefile EXTENSION = cartodb -EXTVERSION = 0.16.3 +EXTVERSION = 0.16.4 SED = sed @@ -70,6 +70,7 @@ UPGRADABLE = \ 0.16.1 \ 0.16.2 \ 0.16.3 \ + 0.16.4 \ $(EXTVERSION)dev \ $(EXTVERSION)next \ $(END) diff --git a/NEWS.md b/NEWS.md index e2c3027..1f2d474 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,17 @@ +0.16.4 (2016-05-27) +------------------- + +* Change CDB_ZoomFromScale() to use a formula and raise + maximum overview level from 23 to 29. + [#259](https://github.com/CartoDB/cartodb-postgresql/pull/259) + +* Fix bug in overview creating causing it to fail when `x` or + `y` columns exist with non-integer type. Prevent also + potential integer overflows limiting maximum overview level + to 23. + [#258](https://github.com/CartoDB/cartodb-postgresql/pull/258) + + 0.16.3 (2016-05-09) -------------------