diff --git a/CHANGELOG.md b/CHANGELOG.md index 078d5fd..e39df96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +* Support for Python 3.9, 3.10, 3.11, and 3.12 +* Support for Django 3.2, 4.2, and 5.0 +* Support for Django REST Framework 3.12, 3.13, 3.14, and 3.15 + ### Changed * Switches from Travis CI to Github Actions * Introduced `black` and `isort` to standardise coding style @@ -12,6 +17,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Drops `./runtest` executable, `pytest` now direct route * Drops `mock` dependency, in favour of `unittest.mock` +### Removed +* Support for Python <= 3.7 (EOL 2023) +* Support for Django <= 3.1 (EOL 2021) +* Support for Django REST Framework <= 3.11 + ## [2.0.1] - 2020-09-20 ### Fixed * Removed `import_local()`, use Django's in-built `import_string()` method diff --git a/rest_framework_serializer_extensions/__init__.py b/rest_framework_serializer_extensions/__init__.py index 528787c..159d48b 100644 --- a/rest_framework_serializer_extensions/__init__.py +++ b/rest_framework_serializer_extensions/__init__.py @@ -1 +1 @@ -__version__ = "3.0.0" +__version__ = "2.0.1"