From bdbaef123c62dfb5bb6d084f24cd3c2a823633e4 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Sat, 13 Oct 2018 14:21:50 +0200 Subject: [PATCH] 1.0.0-rc.7 --- docs/changelog.md | 16 ++++++++++------ umap/__init__.py | 2 +- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 85ea8ef5..56608180 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -49,29 +49,33 @@ COMMIT; umap compress -## 1.0.0.rc-6 +## 1.0.0-rc.7 + +- fixed table popup template not displaying name anymore (cf #647) + +## 1.0.0-rc.6 - fixed OSM properties not read anymore (cf #641) - fixed permissions panel not active at first map save -## 1.0.0.rc-5 +## 1.0.0-rc.5 - fixed user autocompletion in permissions panel (cf #635) - fixed ternary choice dealing with unknown values (cf #633) -## 1.0.0.rc-4 +## 1.0.0-rc.4 - fixed geodjango defaulting geojson parsing to SRID 3857 instead of 4326 - fixed tooltip on hover (cf #631) -## 1.0.0.rc-3 +## 1.0.0-rc.3 - added a readonly mode (`UMAP_READONLY=True`), useful to disallow update while migrating from one server to an other, for example -## 1.0.0.rc-2 +## 1.0.0-rc.2 - allow to cache proxied remote data requests (#513 #510 #160) - fixed popup template parsing of url with url as query string (#607) @@ -83,7 +87,7 @@ COMMIT; Allows to add more of those in the future also. - fixed popup not opening on first zoom button click when marker is clustered (#611) -## 1.0.0.rc-1 +## 1.0.0-rc.1 - BREAKING: support of python 2 is removed per upgrading to Django 2.0 - WARNING: merge Leaflet-Storage and django-leaflet-storage inside umap to ease maintenance and contribution; See [Upgrading to 1.0](#upgrading-to-1.0) diff --git a/umap/__init__.py b/umap/__init__.py index 260a50e5..ce020ca8 100644 --- a/umap/__init__.py +++ b/umap/__init__.py @@ -1,5 +1,5 @@ "Create maps with OpenStreetMap layers in a minute and embed them in your site." -VERSION = (1, 0, 0, 'rc', 6) +VERSION = (1, 0, 0, 'rc', 7) __author__ = 'Yohan Boniface' __contact__ = "ybon@openstreetmap.fr"