Skip to content

Commit

Permalink
[CHANGE] Version bumped to v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ppfeufer committed Mar 16, 2024
1 parent 77db9c3 commit cbafebc
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 4 deletions.
42 changes: 41 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,42 @@ Section Order:
### Security
-->

## \[3.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
- Show the main character first on the dashboard page

### Fixed

- Some issues with the translations in the Python code
- Issues with translations in the Django admin backend
- Stats graph appearance
- A bug where the previous or next month number wasn't calculated correctly in the statistics detail view
- A bug where the next month button in the statistics detail view was not displayed correctly
- A potential performance issue with an ajax call in the dashboard view (thx to @pvyParts)

### Changed

- JS modernized
- CSS modernized
- Templates changed to Bootstrap 5

### Removed

- Support for Alliance Auth 3

## \[3.0.0-beta.3\] - 2024-03-05

> \[!NOTE\]
Expand Down Expand Up @@ -90,7 +126,7 @@ Section Order:
### Changed

- JS modernized
- CSS modernizes
- CSS modernized
- Templates changed to Bootstrap 5

### Removed
Expand All @@ -99,6 +135,10 @@ Section Order:

## \[2.13.0\] - 2023-09-26

> \[!NOTE\]
>
> **This is the last version compatible with Alliance Auth v3.**
### Fixed

- Pylint issues
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ build_test:

tox_tests:
export USE_MYSQL=False; \
tox -v -e allianceauth-stable; \
tox -v -e allianceauth-latest; \
rm -rf .tox/
2 changes: 1 addition & 1 deletion afat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
# Django
from django.utils.translation import gettext_lazy as _

__version__ = "3.0.0-beta.3"
__version__ = "3.0.0"
__title__ = _("Fleet Activity Tracking")
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dynamic = [
"version",
]
dependencies = [
"allianceauth>=4.0.0b2",
"allianceauth<5.0.0,>=4",
"allianceauth-app-utils>=1.14.1",
"unidecode>=1.3.4",
]
Expand Down

0 comments on commit cbafebc

Please sign in to comment.