diff --git a/configurations/__init__.py b/configurations/__init__.py index 61bd1cf..a53781d 100644 --- a/configurations/__init__.py +++ b/configurations/__init__.py @@ -2,7 +2,7 @@ from .base import Configuration from .decorators import pristinemethod -__version__ = '2.0.dev' +__version__ = '2.0' __all__ = ['Configuration', 'pristinemethod'] diff --git a/docs/changes.rst b/docs/changes.rst index 022ef2d..8347d34 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -3,12 +3,24 @@ Changelog --------- -v2.0 (Not yet released) -^^^^^^^^^^^^^^^^^^^^^^^ +v2.0 (2016-07-29) +^^^^^^^^^^^^^^^^^ -- Drop support of python2.6 and python3.2 -- Drop support of Django < 1.8 +- **BACKWARD INCOMPATIBLE** Drop support of Python 2.6 and 3.2 +- **BACKWARD INCOMPATIBLE** Drop support of Django < 1.8 + +- **BACKWARD INCOMPATIBLE** Moved sphinx callable has been moved from + ``configurations`` to ``configurations.sphinx``. + +- **BACKWARD INCOMPATIBLE** Removed the previously deprecated + ``configurations.Settings`` class in favor of the + ``configurations.Configuration`` added in 0.4. This removal was planned for + the 1.0 release and is now finally enacted. + +- Add multiprocessing support for sphinx integration + +- Fix a RemovedInDjango19Warning warning v1.0 (2016-01-04) ^^^^^^^^^^^^^^^^^ diff --git a/docs/cookbook.rst b/docs/cookbook.rst index 206b5e9..58b79d6 100644 --- a/docs/cookbook.rst +++ b/docs/cookbook.rst @@ -250,4 +250,5 @@ the environment variable accordingly: .. versionchanged:: 2.0 -Please note that the sphinx callable has been moved from `configurations` to `configurations.sphinx`. +Please note that the sphinx callable has been moved from ``configurations`` to +``configurations.sphinx``.