diff options
-rw-r--r-- | CHANGES.txt | 8 | ||||
-rw-r--r-- | chimere/__init__.py | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 4712708..47e6443 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,11 @@ +2.0.1 (2013-02-10) +------------------ + +- admin: fix route page when a property is newly set +- map: add attribution div +- minor fix on the documentation + + 2.0.0 (2013-02-02) ------------------ diff --git a/chimere/__init__.py b/chimere/__init__.py index 81b68e5..450d4e5 100644 --- a/chimere/__init__.py +++ b/chimere/__init__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # Copyright (C) 2012-2013 Étienne Loks <etienne.loks_AT_peacefrogsDOTnet> -VERSION = (2, 0, 0) +VERSION = (2, 0, 1) def get_version(): return u'.'.join((unicode(num) for num in VERSION)) |