summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSridhar Ratnakumar <sridharr@activestate.com>2014-04-21 16:54:56 -0700
committerSridhar Ratnakumar <sridharr@activestate.com>2014-04-21 16:54:56 -0700
commit44068e3e4c08ab8d8c29e2de8c897e1da3862f00 (patch)
treed1d589038f00d595d695344421666e0ecd79b4cf
parenta163283dc5ca4bb7a110803dc840e05967a88cd3 (diff)
downloadappdirs-44068e3e4c08ab8d8c29e2de8c897e1da3862f00.tar.gz
prep for dev (1.4.0)
-rw-r--r--CHANGES.rst4
-rw-r--r--appdirs.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 693cd38..33ebbff 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,10 @@
appdirs Changelog
=================
+appdirs 1.4.0
+-------------
+- ...
+
appdirs 1.3.0
-------------
- [Unix, issue 16] Conform to XDG standard, instead of breaking it for
diff --git a/appdirs.py b/appdirs.py
index f7750dd..2024d70 100644
--- a/appdirs.py
+++ b/appdirs.py
@@ -13,7 +13,7 @@ See <http://github.com/ActiveState/appdirs> for details and usage.
# - Mac OS X: http://developer.apple.com/documentation/MacOSX/Conceptual/BPFileSystem/index.html
# - XDG spec for Un*x: http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html
-__version_info__ = (1, 3, 0)
+__version_info__ = (1, 4, 0)
__version__ = '.'.join(map(str, __version_info__))