Skip to content

Commit

Permalink
Bumps version to 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Nov 6, 2014
1 parent ecb2fed commit 57fbe6d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions 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)
----------------

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion rpaths.py
Expand Up @@ -14,7 +14,7 @@

__all__ = ["unicode", "Path", "PY3", "PosixPath", "WindowsPath"]

__version__ = '0.9'
__version__ = '0.10'


PY3 = sys.version_info[0] == 3
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -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",
Expand All @@ -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',
Expand Down

0 comments on commit 57fbe6d

Please sign in to comment.