summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRob Dennis <rdennis@gmail.com>2014-04-04 23:29:18 -0400
committerRob Dennis <rdennis@gmail.com>2014-04-04 23:29:18 -0400
commit12e56d8f5a9f75f3026a3e9b0461793b77a8ad4e (patch)
treeb39c176af0457ab0bb8bd674bc0b4d8345dbddec /docs
parente36be928ae339c57b99fe5ec2f9810a3e3c12340 (diff)
parent54a2572fb9d6c9b1f63585938ad246ddada49982 (diff)
downloadconfigobj-git-12e56d8f5a9f75f3026a3e9b0461793b77a8ad4e.tar.gz
Merge pull request #47 from robdennis/master
refactored version numbers and bumped to 5.0.3
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py9
-rw-r--r--docs/configobj.rst8
2 files changed, 10 insertions, 7 deletions
diff --git a/docs/conf.py b/docs/conf.py
index d969dde..b6f83e1 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -12,8 +12,7 @@
# All configuration values have a default; values that are commented out
# serve to show the default.
-import sys
-import os
+from _version import __version__
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
@@ -52,10 +51,10 @@ copyright = u'2014, Michael Foord, Nicola Larosa, Rob Dennis, Eli Courtwright'
# |version| and |release|, also used in various other places throughout the
# built documents.
#
-# The short X.Y version.
-version = '5.0'
# The full version, including alpha/beta/rc tags.
-release = '5.0.2'
+release = __version__
+# The short X.Y version.
+version = '.'.join(release.split('.')[:2])
# 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 2502a92..e5488be 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.2
+:Version: ConfigObj 5.0.3
: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.2**, dated 19th February 2014. ConfigObj 5 is
+The current version is **5.0.3**, dated 4th April 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,10 @@ 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/04 - Version 5.0.3
+--------------------------
+* BUGFIX: not handling unicode encoding well, especially with respect to writing out files
+
2014/02/27 - Version 5.0.2
--------------------------
* Specific error message for installing version this version on Python versions older than 2.5