diff --git a/README.md b/README.md index ef85709..9073ce5 100644 --- a/README.md +++ b/README.md @@ -10,11 +10,12 @@ Logs can be accessed before a transition occurs and before they are persisted to by enabling a cached backend. See [Advanced Usage](#advanced-usage) ## Changelog -### 3.0.0-dev +### 3.0.0 (2022-01-14) - Switch to github actions (from travis-ci) - Test against django 3.2 and 4.0, then python 3.9 and 3.10 - Drop support for django 1.11, 2.0, 2.1, 3.0, 3.1 - Drop support for python 3.4, 3.5, 3.6 + - allow using StateLogManager in migrations [#95](https://github.com/gizmag/django-fsm-log/pull/95) ### 2.0.1 (2020-03-26) - Add support for django3.0 diff --git a/setup.py b/setup.py index 5ca2f4c..303bf5a 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def readfile(filename): setup( name='django-fsm-log', - version='3.0.0-dev', + version='3.0.0', description='Logging for django-fsm', long_description=readfile('README.md'), long_description_content_type='text/markdown',