Skip to content

Commit

Permalink
v1.4.0 packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
justquick committed Feb 17, 2022
1 parent 7b94888 commit 903d421
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion actstream/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
except:
pass

__version__ = '0.10.0'
__version__ = '1.4.0'
__author__ = 'Asif Saif Uddin, Justin Quick <[email protected]>'
default_app_config = 'actstream.apps.ActstreamConfig'
11 changes: 9 additions & 2 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
url='http://github.com/justquick/django-activity-stream',
Expand Down

0 comments on commit 903d421

Please sign in to comment.