Skip to content

Commit

Permalink
dist: bump minor version and update distribution script before new re…
Browse files Browse the repository at this point in the history
…lease
  • Loading branch information
swistakm committed Mar 28, 2017
1 parent a4f269c commit c45e970
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -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,
Expand All @@ -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',
Expand All @@ -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',
],
)
2 changes: 1 addition & 1 deletion src/graceful/__init__.py
Expand Up @@ -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

0 comments on commit c45e970

Please sign in to comment.