Skip to content

Commit

Permalink
Bump version to 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Aug 26, 2015
1 parent 09497c1 commit ee453ad
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,12 @@
Changelog
=========

0.11 (2015-08-26)
-----------------

Enhancements:
* Add a `Pattern` class, exposing pattern-matching outside of directory listing.

0.10 (2014-11-06)
-----------------

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.10'
version = '0.11'
# The full version, including alpha/beta/rc tags.
release = '0.10'
release = '0.11'

# 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.10'
__version__ = '0.11'


PY3 = sys.version_info[0] == 3
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -9,17 +9,17 @@
no other library can handle all the possible paths on every platform.
"""
setup(name='rpaths',
version='0.10',
version='0.11',
py_modules=['rpaths'],
description='Path manipulation library',
author="Remi Rampin",
author_email='remirampin@gmail.com',
url='http://github.com/remram44/rpaths',
long_description=description,
license='BSD',
keywords=['path', 'file', 'filename'],
keywords=['path', 'file', 'filename', 'pattern', 'fnmatch'],
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: Microsoft :: Windows',
Expand Down

0 comments on commit ee453ad

Please sign in to comment.