Skip to content
This repository was archived by the owner on Oct 7, 2025. It is now read-only.

Commit 7eed13c

Browse files
committed
Bump version
1 parent 77a4d77 commit 7eed13c

File tree

2 files changed

+39
-33
lines changed

2 files changed

+39
-33
lines changed

README.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -427,11 +427,13 @@ your ``INSTALLED_APPS``:
427427
Changelog
428428
---------
429429

430-
431-
django-fsm 2.8.1 2022-08-15
430+
django-fsm 2.8.2 2024-04-09
432431
~~~~~~~~~~~~~~~~~~~~~~~~~~~
433432

434-
- Improve fix for get_available_FIELD_transition
433+
- Fix graph_transitions commnad for Django>=4.0
434+
- Preserve chosen "using" DB in ConcurentTransitionMixin
435+
- Fix error message in GET_STATE
436+
- Implement Transition __hash__ and __eq__ for 'in' operator
435437

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

setup.py

Lines changed: 34 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
from setuptools import setup
22

33
try:
4-
long_description = open('README.rst').read()
4+
long_description = open("README.rst").read()
55
except IOError:
6-
long_description = ''
6+
long_description = ""
77

88
setup(
9-
name='django-fsm',
10-
version='2.8.1',
11-
description='Django friendly finite state machine support.',
12-
author='Mikhail Podgurskiy',
13-
author_email='[email protected]',
14-
url='http://github.com/kmmbvnr/django-fsm',
9+
name="django-fsm",
10+
version="2.8.2",
11+
description="Django friendly finite state machine support.",
12+
author="Mikhail Podgurskiy",
13+
author_email="[email protected]",
14+
url="http://github.com/kmmbvnr/django-fsm",
1515
keywords="django",
16-
packages=['django_fsm', 'django_fsm.management', 'django_fsm.management.commands'],
16+
packages=["django_fsm", "django_fsm.management", "django_fsm.management.commands"],
1717
include_package_data=True,
1818
zip_safe=False,
19-
license='MIT License',
20-
platforms=['any'],
19+
license="MIT License",
20+
platforms=["any"],
2121
classifiers=[
22-
'Development Status :: 5 - Production/Stable',
23-
'Environment :: Web Environment',
24-
'Intended Audience :: Developers',
25-
'License :: OSI Approved :: MIT License',
26-
'Operating System :: OS Independent',
22+
"Development Status :: 5 - Production/Stable",
23+
"Environment :: Web Environment",
24+
"Intended Audience :: Developers",
25+
"License :: OSI Approved :: MIT License",
26+
"Operating System :: OS Independent",
2727
"Framework :: Django",
2828
"Framework :: Django :: 1.6",
2929
"Framework :: Django :: 1.8",
@@ -37,18 +37,22 @@
3737
"Framework :: Django :: 3.2",
3838
"Framework :: Django :: 4.0",
3939
"Framework :: Django :: 4.1",
40-
'Programming Language :: Python',
41-
'Programming Language :: Python :: 2.6',
42-
'Programming Language :: Python :: 2.7',
43-
'Programming Language :: Python :: 3',
44-
'Programming Language :: Python :: 3.4',
45-
'Programming Language :: Python :: 3.5',
46-
'Programming Language :: Python :: 3.6',
47-
'Programming Language :: Python :: 3.7',
48-
'Programming Language :: Python :: 3.8',
49-
'Programming Language :: Python :: 3.9',
50-
'Programming Language :: Python :: 3.10',
51-
'Framework :: Django',
52-
'Topic :: Software Development :: Libraries :: Python Modules',
53-
]
40+
"Framework :: Django :: 5.0",
41+
"Programming Language :: Python",
42+
"Programming Language :: Python :: 2.6",
43+
"Programming Language :: Python :: 2.7",
44+
"Programming Language :: Python :: 3",
45+
"Programming Language :: Python :: 3.4",
46+
"Programming Language :: Python :: 3.5",
47+
"Programming Language :: Python :: 3.6",
48+
"Programming Language :: Python :: 3.7",
49+
"Programming Language :: Python :: 3.8",
50+
"Programming Language :: Python :: 3.9",
51+
"Programming Language :: Python :: 3.10",
52+
"Programming Language :: Python :: 3.11",
53+
"Programming Language :: Python :: 3.12",
54+
"Programming Language :: Python :: 3.13",
55+
"Framework :: Django",
56+
"Topic :: Software Development :: Libraries :: Python Modules",
57+
],
5458
)

0 commit comments

Comments
 (0)