diff --git a/CHANGELOG.creole b/CHANGELOG.creole index 3c804e91..741ea0c7 100644 --- a/CHANGELOG.creole +++ b/CHANGELOG.creole @@ -1,5 +1,7 @@ -0.9.2 release ? +0.9.2 release 2014-12-26 * Mode standalone/CGI: accept z/x/y and zoom/x/y coordinates +* DB/Osmosis: support for hide_outer_ways column (osmosis-multipolygon v0.3) +* bugfixes 0.9.1 release 2014-12-02 * advanced database options: db.search_path, db.hstore_key_index diff --git a/README.md b/README.md index b5640a1c..f2237373 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ pgmapcss compiles MapCSS styles into a database function. Mapnik just needs to c Alternatively there's a standalone mode, where the MapCSS style is compiled into an executable, which can be run from the command line. The executable will not render an image but create GeoJSON output instead. See below for details. -Stable version: [0.9.0](https://github.com/plepe/pgmapcss), development version: [0.10-dev](https://github.com/plepe/pgmapcss/tree/branch-0.10), see [open issues](https://github.com/plepe/pgmapcss/milestones/Version%200.10) +Stable version: [0.9.2](https://github.com/plepe/pgmapcss), development version: [0.10-dev](https://github.com/plepe/pgmapcss/tree/branch-0.10), see [open issues](https://github.com/plepe/pgmapcss/milestones/Version%200.10) Features -------- diff --git a/pgmapcss/version.py b/pgmapcss/version.py index 5206efe7..034b90f9 100644 --- a/pgmapcss/version.py +++ b/pgmapcss/version.py @@ -1,7 +1,7 @@ __all__ = 'VERSION', 'VERSION_INFO' #: (:class:`tuple`) The version tuple e.g. ``(0, 9, 2)``. -VERSION_INFO = (0, 9, 1) +VERSION_INFO = (0, 9, 2) #: (:class:`basestring`) The version string e.g. ``'0.9.2'``. if len(VERSION_INFO) == 4: