Skip to content

Commit 903d421

Browse files
committed
v1.4.0 packaging
1 parent 7b94888 commit 903d421

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

actstream/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
except:
44
pass
55

6-
__version__ = '0.10.0'
6+
__version__ = '1.4.0'
77
__author__ = 'Asif Saif Uddin, Justin Quick <[email protected]>'
88
default_app_config = 'actstream.apps.ActstreamConfig'

docs/source/changelog.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
Changelog
44
=========
55

6+
1.4.0
7+
------
8+
9+
- Django 4 support
10+
- Russian translations
11+
- Bugfix on Action.get_absolute_url
12+
- Set AutoField as default for app config
13+
- Changing minor version tracking to match Django version
14+
615
0.10.0
716
----------
817
- Replace travis by GitHub actions for CI
@@ -12,8 +21,6 @@ Changelog
1221
- Feature of having with_user_activity=True parameter when using User Activity Feed (User Stream) url
1322
- Document fix
1423

15-
16-
1724
0.9.0
1825
-----
1926
- Support django 3.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
from setuptools import setup
33
except ImportError:
44
from distutils.core import setup
5-
from actstream import __version__
5+
from actstream import __version__, __author__
66

77
setup(name='django-activity-stream',
88
version=__version__,
99
description='Generate generic activity streams from the actions on your '
1010
'site. Users can follow any actors\' activities for personalized streams.',
1111
long_description=open('README.rst').read(),
12-
author='Justin Quick',
12+
author=__author__,
1313
license='BSD 3-Clause',
1414
author_email='[email protected]',
1515
url='http://github.com/justquick/django-activity-stream',

0 commit comments

Comments
 (0)