Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kmmbvnr committed Apr 9, 2024
1 parent 77a4d77 commit 7eed13c
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 33 deletions.
8 changes: 5 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -427,11 +427,13 @@ your ``INSTALLED_APPS``:
Changelog
---------


django-fsm 2.8.1 2022-08-15
django-fsm 2.8.2 2024-04-09
~~~~~~~~~~~~~~~~~~~~~~~~~~~

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

.. |Build Status| image:: https://travis-ci.org/viewflow/django-fsm.svg?branch=master
:target: https://travis-ci.org/viewflow/django-fsm
64 changes: 34 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
from setuptools import setup

try:
long_description = open('README.rst').read()
long_description = open("README.rst").read()
except IOError:
long_description = ''
long_description = ""

setup(
name='django-fsm',
version='2.8.1',
description='Django friendly finite state machine support.',
author='Mikhail Podgurskiy',
author_email='kmmbvnr@gmail.com',
url='http://github.com/kmmbvnr/django-fsm',
name="django-fsm",
version="2.8.2",
description="Django friendly finite state machine support.",
author="Mikhail Podgurskiy",
author_email="kmmbvnr@gmail.com",
url="http://github.com/kmmbvnr/django-fsm",
keywords="django",
packages=['django_fsm', 'django_fsm.management', 'django_fsm.management.commands'],
packages=["django_fsm", "django_fsm.management", "django_fsm.management.commands"],
include_package_data=True,
zip_safe=False,
license='MIT License',
platforms=['any'],
license="MIT License",
platforms=["any"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Django :: 1.6",
"Framework :: Django :: 1.8",
Expand All @@ -37,18 +37,22 @@
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Django',
'Topic :: Software Development :: Libraries :: Python Modules',
]
"Framework :: Django :: 5.0",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: Django",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)

0 comments on commit 7eed13c

Please sign in to comment.