diff --git a/CHANGELOG.md b/CHANGELOG.md index daabc07..d5c45df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,17 @@ # Changelog +## [2.0.0](https://github.com/crccheck/django-object-actions/compare/v1.1.2...v2.0.0) (2019-11-30) + + +### ⚠ BREAKING CHANGES + +* This release drops Python 2 support + +Django has [dropped Python 2 support](https://docs.djangoproject.com/en/2.2/releases/2.0/#python-compatibility) ever since Django 2.0 (December 2, 2017). With Django 3.0 coming very soon and Python 2 reaching end of life, it doesn't make sense to continue supporting Python 2. + +### Features + +* Drop Python 2 support ([#105](https://github.com/crccheck/django-object-actions/issues/105)) ([551d2bb](https://github.com/crccheck/django-object-actions/commit/551d2bb2a66c5fd1c157b05c288032124affba41)) + ### [1.1.2](https://github.com/crccheck/django-object-actions/compare/v1.1.1...v1.1.2) (2019-11-14) ## [1.1.1](https://github.com/crccheck/django-object-actions/compare/v1.1.0...v1.1.1) (2019-10-06) diff --git a/VERSION b/VERSION index 45a1b3f..227cea2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.2 +2.0.0 diff --git a/django_object_actions/__init__.py b/django_object_actions/__init__.py index 409c4d7..ff30b6c 100644 --- a/django_object_actions/__init__.py +++ b/django_object_actions/__init__.py @@ -1,5 +1,5 @@ """A Django app for adding object tools for models in the admin.""" -__version__ = "1.1.2" +__version__ = "2.0.0" # kind of like __all__, make these available for public diff --git a/setup.py b/setup.py index e29f733..47c8c0d 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="django-object-actions", - version="1.1.2", + version="2.0.0", author="Chris Chang", author_email="c@crccheck.com", url="https://github.com/crccheck/django-object-actions",