diff --git a/CHANGES b/CHANGES index b2e46b7..f93eb06 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,11 @@ Unreleased ========== +django-solo-2.3.0 +================= + +Date: 1 July, 2024 + * Add typing support * Deprecate `solo.models.get_cache` * Switch to `pyproject.toml` diff --git a/README.md b/README.md index cc11509..5fa7f71 100644 --- a/README.md +++ b/README.md @@ -293,7 +293,11 @@ To run the unit tests: 1. Update [`solo/__init__.py`](solo/__init__.py) `version` -2. Make a new release on GitHub +2. Update [`CHANGES`](./CHANGES) + +3. Make a new release on GitHub + +4. Upload release to PyPI ```shell tox -e build diff --git a/solo/__init__.py b/solo/__init__.py index 62fc682..0c5b159 100644 --- a/solo/__init__.py +++ b/solo/__init__.py @@ -5,7 +5,7 @@ import django -__version__ = "2.2.0" +__version__ = "2.3.0" if django.VERSION < (3, 2): default_app_config = "solo.apps.SoloAppConfig"