diff --git a/AUTHORS b/AUTHORS index d69ee00..5e065dd 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,7 +1,39 @@ -Jiri Barton -Vojtech Jasny -Roman Krejcik -Jan Vesely Ales Zoulek -Jannis Leidel +Alexander frenzel Bouke Haarsma +Camilo Nova +Charlie Hornsby +Curtis Maloney +Dan Poirier +David Burke +Florian Apolloner +Igor Támara +Jake Merdich +Jannis Leidel +Janusz Harkot +Jiri Barton +Jonas +Kuba Zarzycki +Leandra Finger +Les Orchard +Lin Xianyi +Marcin Baran +Mario Orlandi +Mario Rosa +Mattia Larentis +Merijn Bertels +Omer Katz +Petr Knap +Philip Neustrom +Pierre-Olivier Marec +Roman Krejcik +Silvan Spross +Sławek Ehlert +Vojtech Jasny +Yin Jifeng +illumin-us-r3v0lution +mega +saw2th +trbs +vl <1844144@gmail.com> +vl diff --git a/docs/changes.rst b/docs/changes.rst index 20da8a6..374eaad 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,6 +1,26 @@ Changelog --------- +v1.1 (2015/09/24) +~~~~~~~~~~~~~~~~~ + +* **BACKWARD INCOMPATIBLE** Dropped support for Python 2.6 + The supported versions are 2.7, 3.3 (on Django < 1.9) and 3.4. + +* **BACKWARD INCOMPATIBLE** Dropped support for Django 1.4, 1.5 and 1.6 + The supported versions are 1.7, 1.8 and the upcoming 1.9 release + +* Added compatibility to Django 1.8 and 1.9. + +* Added Spanish and Chinese (``zh_CN``) translations. + +* Added :class:`override_config` decorator/context manager for easy + :doc:`testing `. + +* Added the ability to use linebreaks in config value help texts. + +* Various testing fixes. + v1.0.1 (2015/01/07) ~~~~~~~~~~~~~~~~~~~ diff --git a/docs/conf.py b/docs/conf.py index 2134a66..bdb5910 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -101,7 +101,7 @@ pygments_style = 'sphinx' # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'default' +html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/docs/testing.rst b/docs/testing.rst index 29c9e73..8d092f1 100644 --- a/docs/testing.rst +++ b/docs/testing.rst @@ -7,8 +7,8 @@ Testing how your app behaves with different config values is achieved with the .. py:class:: override_config(**kwargs) - Replace key-value pairs in config. - + Replaces key-value pairs in the config. + Use as decorator or context manager. Usage ~~~~~ @@ -38,4 +38,3 @@ method level and also as a def test_what_is_your_favourite_color(self): with override_config(YOUR_FAVOURITE_COLOR="Blue?"): self.assertEqual(config.YOUR_FAVOURITE_COLOR, "Blue?") -