Updated authors, changelog and docs config.

This commit is contained in:
Jannis Leidel 2015-09-24 12:46:52 +02:00
parent 527bc0ca7e
commit 6fa03fdef8
4 changed files with 60 additions and 9 deletions

42
AUTHORS
View file

@ -1,7 +1,39 @@
Jiri Barton <jbar@hosting4u.cz>
Vojtech Jasny <voy@voy.cz>
Roman Krejcik <farin@farin.cz>
Jan Vesely <jave@janvesely.com>
Ales Zoulek <ales.zoulek@gmail.com>
Jannis Leidel <jannis@leidel.info>
Alexander frenzel <alex@relatedworks.com>
Bouke Haarsma <bouke@webatoom.nl>
Camilo Nova <camilo.nova@gmail.com>
Charlie Hornsby <charlie.hornsby@hotmail.co.uk>
Curtis Maloney <curtis@tinbrain.net>
Dan Poirier <dpoirier@caktusgroup.com>
David Burke <dmbst32@gmail.com>
Florian Apolloner <florian@apolloner.eu>
Igor Támara <igor@axiacore.com>
Jake Merdich <jmerdich@users.noreply.github.com>
Jannis Leidel <jannis@leidel.info>
Janusz Harkot <janusz.harkot@gmail.com>
Jiri Barton <jbar@hosting4u.cz>
Jonas <jvp@jonasundderwolf.de>
Kuba Zarzycki <jakubzarzycki@gmail.com>
Leandra Finger <leandra.finger@gmail.com>
Les Orchard <me@lmorchard.com>
Lin Xianyi <iynaix@gmail.com>
Marcin Baran <marcin.baran@agencjawmc.pl>
Mario Orlandi <morlandi@brainstorm.it>
Mario Rosa <mario@dwaiter.com>
Mattia Larentis <mattia@larentis.eu>
Merijn Bertels <merijn.bertels@gmail.com>
Omer Katz <omer.drow@gmail.com>
Petr Knap <dev@petrknap.cz>
Philip Neustrom <philipn@gmail.com>
Pierre-Olivier Marec <pomarec@free.fr>
Roman Krejcik <farin@farin.cz>
Silvan Spross <silvan.spross@gmail.com>
Sławek Ehlert <slafs@op.pl>
Vojtech Jasny <voy@voy.cz>
Yin Jifeng <jifeng.yin@gmail.com>
illumin-us-r3v0lution <luminaries@riseup.net>
mega <qoisone@gmail.com>
saw2th <stephen@saw2th.co.uk>
trbs <trbs@trbs.net>
vl <1844144@gmail.com>
vl <vl@u64.(none)>

View file

@ -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 <testing>`.
* Added the ability to use linebreaks in config value help texts.
* Various testing fixes.
v1.0.1 (2015/01/07)
~~~~~~~~~~~~~~~~~~~

View file

@ -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

View file

@ -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?")