diff --git a/CHANGES.txt b/CHANGES.txt index 5960312..53346ad 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,4 @@ +v1.3.0, 2014-11-09 -- Add support for Python 3. v1.2.2, 2014-11-01 -- Minor changes to the way Post.short returns the summary / body. v1.2.1, 2014-11-01 -- Add description to setup.py to keep it from showing as diff --git a/hermes/__init__.py b/hermes/__init__.py index 923b987..19b4f1d 100644 --- a/hermes/__init__.py +++ b/hermes/__init__.py @@ -1 +1 @@ -__version__ = '1.2.2' +__version__ = '1.3.0' diff --git a/setup.py b/setup.py index 7ebba1e..818b797 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,13 @@ from setuptools import setup, find_packages setup( - name='django-hermes', - version='1.2.2', author='Chris Pickett', author_email='chris.pickett@gmail.com', - packages=find_packages(), - url='https://github.com/bunchesofdonald/django-hermes', + description='A light-weight blogging app for Django.', license='MIT', long_description=open('README.rst').read(), - description='A light-weight blogging app for Django.', + name='django-hermes', + packages=find_packages(), + url='https://github.com/bunchesofdonald/django-hermes', + version='1.3.0', )