diff --git a/actstream/__init__.py b/actstream/__init__.py index c32870e1..be806271 100644 --- a/actstream/__init__.py +++ b/actstream/__init__.py @@ -3,6 +3,6 @@ except: pass -__version__ = '0.10.0' +__version__ = '1.4.0' __author__ = 'Asif Saif Uddin, Justin Quick ' default_app_config = 'actstream.apps.ActstreamConfig' diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 4ef1d79a..ec1ecdea 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,15 @@ Changelog ========= +1.4.0 +------ + + - Django 4 support + - Russian translations + - Bugfix on Action.get_absolute_url + - Set AutoField as default for app config + - Changing minor version tracking to match Django version + 0.10.0 ---------- - Replace travis by GitHub actions for CI @@ -12,8 +21,6 @@ Changelog - Feature of having with_user_activity=True parameter when using User Activity Feed (User Stream) url - Document fix - - 0.9.0 ----- - Support django 3.0 diff --git a/setup.py b/setup.py index 20a00245..0a26ad0d 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,14 @@ from setuptools import setup except ImportError: from distutils.core import setup -from actstream import __version__ +from actstream import __version__, __author__ setup(name='django-activity-stream', version=__version__, description='Generate generic activity streams from the actions on your ' 'site. Users can follow any actors\' activities for personalized streams.', long_description=open('README.rst').read(), - author='Justin Quick', + author=__author__, license='BSD 3-Clause', author_email='justquick@gmail.com', url='http://github.com/justquick/django-activity-stream',