Skip to content

Commit bde9a51

Browse files
committed
Bump version. Close #267
1 parent 8e40cf7 commit bde9a51

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
django-fsm 2.8.0 2021-11-05
5+
~~~~~~~~~~~~~~~~~~~~~~~~~~
6+
7+
- Fix get_available_FIELD_transition on django>=3.2
8+
- Fix refresh_from_db for ConcurrentTransitionMixin
9+
10+
411
django-fsm 2.7.1 2020-10-13
512
~~~~~~~~~~~~~~~~~~~~~~~~~~
613

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,10 +428,11 @@ Changelog
428428
---------
429429

430430

431-
django-fsm 2.7.1 2020-10-13
431+
django-fsm 2.8.0 2021-11-05
432432
~~~~~~~~~~~~~~~~~~~~~~~~~~
433433

434-
- Fix warnings on Django 3.1+
434+
- Fix get_available_FIELD_transition on django>=3.2
435+
- Fix refresh_from_db for ConcurrentTransitionMixin
435436

436437
.. |Build Status| image:: https://travis-ci.org/viewflow/django-fsm.svg?branch=master
437438
:target: https://travis-ci.org/viewflow/django-fsm

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='django-fsm',
10-
version='2.7.1',
10+
version='2.8.0',
1111
description='Django friendly finite state machine support.',
1212
author='Mikhail Podgurskiy',
1313
author_email='kmmbvnr@gmail.com',
@@ -33,7 +33,8 @@
3333
"Framework :: Django :: 2.0",
3434
"Framework :: Django :: 2.1",
3535
"Framework :: Django :: 2.2",
36-
"Framework :: Django :: 3.0",
36+
"Framework :: Django :: 3.1",
37+
"Framework :: Django :: 3.2",
3738
'Programming Language :: Python',
3839
'Programming Language :: Python :: 2.6',
3940
'Programming Language :: Python :: 2.7',
@@ -43,6 +44,8 @@
4344
'Programming Language :: Python :: 3.6',
4445
'Programming Language :: Python :: 3.7',
4546
'Programming Language :: Python :: 3.8',
47+
'Programming Language :: Python :: 3.9',
48+
'Programming Language :: Python :: 3.10',
4649
'Framework :: Django',
4750
'Topic :: Software Development :: Libraries :: Python Modules',
4851
]

0 commit comments

Comments
 (0)