From 56303fd4aa141f1b9b5b5810eb2ffcf045c5f365 Mon Sep 17 00:00:00 2001 From: Koen Van Daele Date: Wed, 30 Apr 2014 18:03:22 +0200 Subject: [PATCH] Set to version 0.1.0a2 --- CHANGES.rst | 8 ++++++++ docs/source/conf.py | 2 +- setup.py | 6 +++--- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 8309f90..4af929a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +0.1.0a2 (2014-04-30) +-------------------- + +- Still alpha. +- Coveralls support. +- Proxy settings in ini file. (#5) +- Range headers. (#9) + 0.1.0a1 (2014-03-19) -------------------- diff --git a/docs/source/conf.py b/docs/source/conf.py index c62bec3..5ad937c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,7 +60,7 @@ # The short X.Y version. version = '0.1' # The full version, including alpha/beta/rc tags. -release = '0.1.0a1' +release = '0.1.0a2' # 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 2766485..d8724a2 100644 --- a/setup.py +++ b/setup.py @@ -22,17 +22,17 @@ testing_extras = tests_requires + [] setup(name='crabpy_pyramid', - version='0.1.0a1', + version='0.1.0a2', description='crabpy_pyramid', long_description=README + '\n\n' + CHANGES, classifiers=[ "Development Status :: 3 - Alpha", "Programming Language :: Python", - 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', "Framework :: Pyramid", "Topic :: Internet :: WWW/HTTP", - "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", "Intended Audience :: Developers", 'License :: OSI Approved :: MIT License', 'Operating System :: OS Independent',