diff --git a/docs/source/CHANGES.rst b/docs/source/CHANGES.rst index 0e2b777..26e52be 100644 --- a/docs/source/CHANGES.rst +++ b/docs/source/CHANGES.rst @@ -1,6 +1,12 @@ Changelog ========= +0.6 +--- + +- Added support to query arbitrary properties with file info and file listing [NikosChondros] +- Added support for file operations within a public link [mrwunderbar666] + 0.5 --- diff --git a/docs/source/conf.py b/docs/source/conf.py index 633a0d3..da2bd88 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '0.5' +version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.5' +release = '0.6' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 96c5cfe..c01268d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup import io -version = '0.5' +version = '0.6' long_description = ( io.open('README.rst', encoding='utf-8').read() @@ -36,7 +36,7 @@ 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 3', - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Intended Audience :: Developers', 'Topic :: Internet :: WWW/HTTP',