diff --git a/CHANGES.md b/CHANGES.md index ac5fe2e48..50b3abf37 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,10 +1,10 @@ Changelog ========= -0.9 (dev) ---------- +0.8.2 (2014/09/29) +------------------ -- TBD +- Limit the maximum version of `openpyxl` to 2.1.0 due to deprecation bug. 0.8.1 (2014/09/04) ------------------ diff --git a/doorstop/__init__.py b/doorstop/__init__.py index 44c472fcd..7a1766d7c 100644 --- a/doorstop/__init__.py +++ b/doorstop/__init__.py @@ -1,7 +1,7 @@ """Package for doorstop.""" __project__ = 'Doorstop' -__version__ = '0.9-dev' +__version__ = '0.8.2' CLI = 'doorstop' GUI = 'doorstop-gui' diff --git a/setup.py b/setup.py index e06bb347d..e0490753e 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ install_requires=[ "PyYAML >= 3.10, < 4", "Markdown >= 2, < 3", - "openpyxl >= 2, < 3", + "openpyxl >= 2, < 2.1.0", "bottle >= 0.12, < 0.13", "requests >= 2, < 3", "pyficache >= 0.2.3, < 0.3",