From 57fbe6da0f19cb3cc59bec4750cc51a22e27222b Mon Sep 17 00:00:00 2001 From: Remi Rampin Date: Thu, 6 Nov 2014 12:55:57 -0500 Subject: [PATCH] Bumps version to 0.10 --- CHANGELOG.md | 8 ++++++++ doc/conf.py | 4 ++-- rpaths.py | 2 +- setup.py | 4 ++-- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24372cc..22247b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Changelog ========= +0.10 (2014-11-06) +----------------- + +Bugfixes: +* Fixes a `rel_path_to()` bug on Python 3 +* Fixes `'.'.rel_path_to('.')` exception +* Fixes `tempfile()` and `tempdir()` not accepting Path as 'dir' parameter + 0.9 (2014-10-20) ---------------- diff --git a/doc/conf.py b/doc/conf.py index 3d5bfb6..b15d617 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = '0.9' +version = '0.10' # The full version, including alpha/beta/rc tags. -release = '0.9' +release = '0.10' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/rpaths.py b/rpaths.py index 6eea41f..64dcec8 100644 --- a/rpaths.py +++ b/rpaths.py @@ -14,7 +14,7 @@ __all__ = ["unicode", "Path", "PY3", "PosixPath", "WindowsPath"] -__version__ = '0.9' +__version__ = '0.10' PY3 = sys.version_info[0] == 3 diff --git a/setup.py b/setup.py index d61d432..7fac8e3 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ no other library can handle all the possible paths on every platform. """ setup(name='rpaths', - version='0.9', + version='0.10', py_modules=['rpaths'], description='Path manipulation library', author="Remi Rampin", @@ -19,7 +19,7 @@ license='BSD', keywords=['path', 'file', 'filename'], classifiers=[ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: Microsoft :: Windows',