Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kmmbvnr committed Nov 12, 2021
1 parent 38dbac7 commit e68fec3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
Changelog
=========

1.10.0 2021-11-12
-----------------

- Django 4.0 support
- Fix set assigned time on auto-assign
- Allow anonymous users to trigger flow start


1.9.0 2021-04-30
----------------

Expand Down
16 changes: 7 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ http://viewflow.io.
- Viewflow 1.2.x compatible with Django 1.11/2.0 (supported till Django 1.11 lifetime/April 2020)
- Viewflow 1.3.x/1.4.x/1.5.x compatible with Django 1.11/2.0/2.1/2.2 (supported till Django 1.11 lifetime/April 2020)
- Viewflow 1.6.x/1.7.x compatible with Django 2.0/2.1/2.2/3.0/3.1 (supported till Django 2.0 lifetime/December 2020)
- Viewflow 1.8.x compatible with Django 2.1/2.2/3.0/3.1
- Viewflow 1.8.x/1.9.x compatible with Django 2.1/2.2/3.0/3.1
- Viewflow 1.10.x compatible with Django 2.2/3.0/3.1/3.2/4.0

Introduction
============
Expand Down Expand Up @@ -125,12 +126,9 @@ Please see `FAQ <https://github.com/kmmbvnr/django-viewflow/wiki/Pro-FAQ>`_ for
Latest changelog
================

1.9.0 2021-04-30
----------------

- Add additional template blocks for left panel. Close #311
- Fix issue with task assign on default POST
- Fix Spanish translation
- Add Italian translation
- Add custom rollback to update_status migration
1.10.0 2021-11-12
-----------------

- Django 4.0 support
- Fix set assigned time on auto-assign
- Allow anonymous users to trigger flow start
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='django-viewflow',
version='1.9.0',
version='1.10.0',
author='Mikhail Podgurskiy',
author_email='[email protected]',
description='Reusable workflow library for django',
Expand All @@ -19,20 +19,20 @@
'Natural Language :: English',
'Operating System :: OS Independent',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Programming Language :: Python :: 2.7',
'Framework :: Django :: 3.2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
],
install_requires=[
'Django>=1.11',
'Django>=2.2',
'django-filter>=1.0',
'django-jsonstore',
'django-annoying',
Expand Down

0 comments on commit e68fec3

Please sign in to comment.