From 6b615133608caab492fe13ec3403dab281520186 Mon Sep 17 00:00:00 2001 From: crccheck Date: Sat, 8 Aug 2020 01:02:43 -0500 Subject: [PATCH] chore(release): 3.0.0 --- CHANGELOG.md | 13 +++++++++++++ VERSION | 2 +- django_object_actions/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5c45df..57495e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,17 @@ # Changelog +## [3.0.0](https://github.com/crccheck/django-object-actions/compare/v2.0.0...v3.0.0) (2020-08-08) + + +### ⚠ BREAKING CHANGES + +* **deps:** drop Python 3.4 support in preparation for adding type hints and Django 3.1 support + +### Features + +* **deps:** Add Django 3.1 support ([#109](https://github.com/crccheck/django-object-actions/issues/109)) ([2c7170e](https://github.com/crccheck/django-object-actions/commit/2c7170e3a73317a9417733a7ddfe0fabab84fe85)) +* **deps:** Drop Python 3.4 support ([#108](https://github.com/crccheck/django-object-actions/issues/108)) ([68519d4](https://github.com/crccheck/django-object-actions/commit/68519d48fa8dd4d3b203981a52157841e5152774)), closes [#107](https://github.com/crccheck/django-object-actions/issues/107) +* add Django 3 test support ([#106](https://github.com/crccheck/django-object-actions/issues/106)) ([4eaf14c](https://github.com/crccheck/django-object-actions/commit/4eaf14c3caff36d5ab274835d38baef7e66213dc)) + ## [2.0.0](https://github.com/crccheck/django-object-actions/compare/v1.1.2...v2.0.0) (2019-11-30) diff --git a/VERSION b/VERSION index 227cea2..4a36342 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.0 +3.0.0 diff --git a/django_object_actions/__init__.py b/django_object_actions/__init__.py index ff30b6c..5e04ee6 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__ = "2.0.0" +__version__ = "3.0.0" # kind of like __all__, make these available for public diff --git a/setup.py b/setup.py index 90f3018..b047ed6 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="django-object-actions", - version="2.0.0", + version="3.0.0", author="Chris Chang", author_email="c@crccheck.com", url="https://github.com/crccheck/django-object-actions",