From 0e7ad47a707ab800d918a886bd9b363b68a43b99 Mon Sep 17 00:00:00 2001 From: Siddhant Goel Date: Thu, 13 Sep 2018 19:10:48 +0200 Subject: [PATCH] bump version --- docs/conf.py | 4 ++-- setup.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 0adda5e..45d31cf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = '0.4' +version = '0.5' # The full version, including alpha/beta/rc tags. -release = '0.4.1' +release = '0.5.0' # 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 41abb25..70ba74d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import sys from shutil import rmtree -from setuptools import setup, Command +from setuptools import Command, setup pwd = os.path.abspath(os.path.dirname(__file__)) @@ -54,11 +54,11 @@ def run(self): setup( name='tornado_sqlalchemy', - version='0.4.1', + version='0.5.0', description='SQLAlchemy helpers for working in Tornado', long_description=long_description, author='Siddhant Goel', - author_email='siddhantgoel@gmail.com', + author_email='me@sgoel.org', license='MIT', url='https://github.com/siddhantgoel/tornado-sqlalchemy', packages=['tornado_sqlalchemy'],