Skip to content

Commit 9d2aab0

Browse files
committed
tagging 5.0.6; fixes #59
1 parent e184b1c commit 9d2aab0

5 files changed

Lines changed: 13 additions & 7 deletions

File tree

_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '5.0.5'
1+
__version__ = '5.0.6'

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# built documents.
5151
#
5252
# The full version, including alpha/beta/rc tags.
53-
release = '5.0.5'
53+
release = '5.0.6'
5454
# The short X.Y version.
5555
version = '.'.join(release.split('.')[:2])
5656

docs/configobj.rst

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
----------------------------------------
99

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

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

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

2386-
2014/04/11 - Version 5.0.4
2386+
2014/08/25 - Version 5.0.6
2387+
--------------------------
2388+
* BUGFIX: Did not correctly handle %-chars in invalid lines
2389+
* BUGFIX: unhelpful error message when nesting invalid
2390+
2391+
2014/04/28 - Version 5.0.5
23872392
--------------------------
23882393
* BUGFIX: error in writing out config files to disk with non-ascii characters
23892394

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
* The order of keys/sections is preserved
5252
* Powerful ``unrepr`` mode for storing/retrieving Python data-types
5353
54+
| Release 5.0.6 improves error messages in certain edge cases
5455
| Release 5.0.5 corrects a unicode-bug that still existed in writing files
5556
| Release 5.0.4 corrects a unicode-bug that still existed in reading files after
5657
| fixing lists of string in 5.0.3

validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ class Validator(object):
538538
ConfigObj, an alternative to ConfigParser which supports lists and
539539
can validate a config file using a config schema.
540540
For more details on using Validator with ConfigObj see:
541-
http://www.voidspace.org.uk/python/configobj.html
541+
https://configobj.readthedocs.org/en/latest/configobj.html
542542
"""
543543

544544
# this regex does the initial parsing of the checks

0 commit comments

Comments
 (0)