From c45e9709d3816eff04bf9a9c79ab6ff92fec1eba Mon Sep 17 00:00:00 2001 From: mjaworski Date: Tue, 28 Mar 2017 10:36:10 +0200 Subject: [PATCH] dist: bump minor version and update distribution script before new release --- setup.py | 7 ++++--- src/graceful/__init__.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 971771a..b85ec8f 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def read_md(f): version=VERSION, author='MichaƂ Jaworski', author_email='swistakm@gmail.com', - description='falcon REST done with grace', + description='Elegant Python REST toolkit built on top of falcon', long_description=read_md(README), packages=PACKAGES, package_dir=PACKAGE_DIR, @@ -57,7 +57,7 @@ def read_md(f): license="BSD", classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Operating System :: OS Independent', @@ -67,8 +67,9 @@ def read_md(f): 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', - + 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3 :: Only', + 'Topic :: Internet :: WWW/HTTP :: WSGI', ], ) diff --git a/src/graceful/__init__.py b/src/graceful/__init__.py index e8c05d0..03d04dc 100644 --- a/src/graceful/__init__.py +++ b/src/graceful/__init__.py @@ -3,5 +3,5 @@ It is inspired by Django REST Framework package. Mostly by how object serialization is done but more emphasis is put on API to be self-descriptive. """ -VERSION = (0, 3, 0) # PEP 386 # noqa +VERSION = (0, 4, 0) # PEP 386 # noqa __version__ = ".".join([str(x) for x in VERSION]) # noqa