diff --git a/CHANGELOG.creole b/CHANGELOG.creole index 2936f30d..89640129 100644 --- a/CHANGELOG.creole +++ b/CHANGELOG.creole @@ -1,4 +1,4 @@ -0.10.0 release 2014-01-?? +0.10.0 release 2014-01-04 * New database backend 'overpass', which is also the new default database backend, including multipolygon support, relationship queries, ... * DB/osm2pgsql can optimize some queries with relationships. (e.g. relation[type=route] member) * Re-structured and simplified code for database backends, see [[doc/database-API.md|doc/database-API.md]] for details. diff --git a/README.md b/README.md index 960f93f4..6cf61dbd 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Alternatively there's a standalone mode, where the MapCSS style is compiled into Since version 0.10 you don't even need a local database import (a local database is needed nonetheless), as the new default data source is Overpass API. Alternatively, osm2pgsql and osmosis pgsnapshot are supported. See [doc/database.md](doc/database.md) for details. -Stable version: [0.9.3](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.10.0](https://github.com/plepe/pgmapcss) ([CHANGELOG](https://github.com/plepe/pgmapcss/blob/master/CHANGELOG.creole)), development version: [0.11-dev](https://github.com/plepe/pgmapcss/tree/branch-0.11), see [open issues](https://github.com/plepe/pgmapcss/milestones/Version%200.11) Features -------- diff --git a/pgmapcss/version.py b/pgmapcss/version.py index 8c776250..c09ad2ef 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, 10, 'dev') +VERSION_INFO = (0, 10, 0) #: (:class:`basestring`) The version string e.g. ``'0.9.2'``. if len(VERSION_INFO) == 4: