diff --git a/CHANGELOG.md b/CHANGELOG.md index feb69cb0..6558adfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,6 +35,35 @@ Section Order: ### Security --> +## \[2.0.0\] - 2024-03-16 + +> \[!NOTE\] +> +> **This version needs at least Alliance Auth v4.0.0!** +> +> Please make sure to update your Alliance Auth instance **before** +> you install this version, otherwise, an update to Alliance Auth will +> be pulled in unsupervised. + +### Added + +- Compatibility to Alliance Auth v4 + - Bootstrap 5 + - Django 4.2 +- Native lazy loading support for images + +### Changed + +- JS modernized +- CSS modernizes +- Templates changed to Bootstrap 5 +- Translations improved +- General code cleanup and modernization + +### Removed + +- Compatibility to Alliance Auth v3 + ## \[2.0.0-beta.2\] - 2024-02-19 > \[!NOTE\] @@ -80,6 +109,10 @@ Section Order: ## \[1.21.0\] - 2023-12-20 +> \[!NOTE\] +> +> **This is the last version compatible with Alliance Auth v3.** + ### Added - Setting for the loss value source \[#153\] diff --git a/aasrp/__init__.py b/aasrp/__init__.py index 8aab83f8..c7b03cd7 100644 --- a/aasrp/__init__.py +++ b/aasrp/__init__.py @@ -5,5 +5,5 @@ # Django from django.utils.translation import gettext_lazy as _ -__version__ = "2.0.0-beta.2" +__version__ = "2.0.0" __title__ = _("Ship Replacement") diff --git a/pyproject.toml b/pyproject.toml index 962d2ad5..554952fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ dynamic = [ "version", ] dependencies = [ - "allianceauth>=4.0.0b1", + "allianceauth<5.0.0,>=4", "allianceauth-app-utils>=1.25", "django-eveuniverse>=1.5.4", ]