summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRob Dennis <rdennis@gmail.com>2014-02-19 21:56:57 -0500
committerRob Dennis <rdennis@gmail.com>2014-02-19 21:56:57 -0500
commit2d99f429903879d51e2d6f853219dd6c0472fbe4 (patch)
tree63b82b83eb8135fc8fd5ace70ac786a3c8301f85 /docs
parentf461e506d74bddb48af27923fe3cf6ae40544a64 (diff)
downloadconfigobj-git-2d99f429903879d51e2d6f853219dd6c0472fbe4.tar.gz
fixes #22v5.0.1
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py4
-rw-r--r--docs/configobj.rst12
2 files changed, 12 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py
index bbee170..e84a5e5 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -53,9 +53,9 @@ copyright = u'2014, Michael Foord, Nicola Larosa, Rob Dennis, Eli Courtwright'
# built documents.
#
# The short X.Y version.
-version = '5.0.0'
+version = '5.0.1'
# The full version, including alpha/beta/rc tags.
-release = '5.0.0'
+release = '5.0.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/docs/configobj.rst b/docs/configobj.rst
index 8e74017..077361f 100644
--- a/docs/configobj.rst
+++ b/docs/configobj.rst
@@ -8,7 +8,7 @@
----------------------------------------
:Authors: Michael Foord, Nicola Larosa, Rob Dennis, Eli Courtwright
-:Version: ConfigObj 5.0.0
+:Version: ConfigObj 5.0.1
:Date: 2014/02/08
:PyPI Entry: `ConfigObj on PyPI <http://pypi.python.org/pypi/configobj/>`_
:Homepage: `Github Page`_
@@ -64,7 +64,7 @@ For support and bug reports please use the ConfigObj `Github Page`_.
Downloading
===========
-The current version is **5.0.0**, dated 8th February 2014. ConfigObj 5 is
+The current version is **5.0.1**, dated 19th February 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:
@@ -2383,6 +2383,14 @@ CHANGELOG
This is an abbreviated changelog showing the major releases up to version 4.
From version 4 it lists all releases and changes.
+2014/02/19 - Version 5.0.1
+--------------------------
+* BUGFIX: Fixed regression on python 2.x where passing an ``encoding`` parameter did
+ not convert a bytestring config file (which is the most common) to unicode. Added
+ unit tests for this and related cases
+* BUGFIX: A particular error message would fail to display with a type error on python 2.6
+ only
+
2014/02/08 - Version 5.0.0
--------------------------
* Python 3 single-source compatibility at the cost of a more restrictive set of versions: 2.6, 2.7, 3.2, 3.3 (otherwise unchanged)