Skip to content

Commit

Permalink
tagging 5.0.6; fixes #59
Browse files Browse the repository at this point in the history
  • Loading branch information
robdennis committed Aug 26, 2014
1 parent e184b1c commit 9d2aab0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion _version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '5.0.5'
__version__ = '5.0.6'
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = '5.0.5'
release = '5.0.6'
# The short X.Y version.
version = '.'.join(release.split('.')[:2])

Expand Down
13 changes: 9 additions & 4 deletions docs/configobj.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
----------------------------------------

:Authors: Michael Foord, Nicola Larosa, Rob Dennis, Eli Courtwright
:Version: ConfigObj 5.0.5
:Date: 2014/02/08
:Version: ConfigObj 5.0.6
:Date: 2014/08/25
:PyPI Entry: `ConfigObj on PyPI <http://pypi.python.org/pypi/configobj/>`_
:Homepage: `Github Page`_
:License: `BSD License`_
Expand Down Expand Up @@ -64,7 +64,7 @@ For support and bug reports please use the ConfigObj `Github Page`_.
Downloading
===========

The current version is **5.0.5**, dated 25th April 2014. ConfigObj 5 is
The current version is **5.0.6**, dated 25th August 2014. ConfigObj 5 is
stable and mature. We still expect to pick up a few bugs along the way though, particularly with respect to Python 3 compatibility [#]_.

We recommend downloading and installing using pip:
Expand Down Expand Up @@ -2383,7 +2383,12 @@ CHANGELOG
This is an abbreviated changelog showing the major releases up to version 4.
From version 4 it lists all releases and changes.

2014/04/11 - Version 5.0.4
2014/08/25 - Version 5.0.6
--------------------------
* BUGFIX: Did not correctly handle %-chars in invalid lines
* BUGFIX: unhelpful error message when nesting invalid

2014/04/28 - Version 5.0.5
--------------------------
* BUGFIX: error in writing out config files to disk with non-ascii characters

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
* The order of keys/sections is preserved
* Powerful ``unrepr`` mode for storing/retrieving Python data-types
| Release 5.0.6 improves error messages in certain edge cases
| Release 5.0.5 corrects a unicode-bug that still existed in writing files
| Release 5.0.4 corrects a unicode-bug that still existed in reading files after
| fixing lists of string in 5.0.3
Expand Down
2 changes: 1 addition & 1 deletion validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ class Validator(object):
ConfigObj, an alternative to ConfigParser which supports lists and
can validate a config file using a config schema.
For more details on using Validator with ConfigObj see:
http://www.voidspace.org.uk/python/configobj.html
https://configobj.readthedocs.org/en/latest/configobj.html
"""

# this regex does the initial parsing of the checks
Expand Down

0 comments on commit 9d2aab0

Please sign in to comment.