Skip to content

Commit 6f52b12

Browse files
committed
[CHANGE] Version bumped to v2.0.0
1 parent d5e78f3 commit 6f52b12

File tree

4 files changed

+34
-6
lines changed

4 files changed

+34
-6
lines changed

CHANGELOG.md

+31-3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,33 @@ Section Order:
3535
### Security
3636
-->
3737

38+
## \[2.0.0\] - 2024-03-16
39+
40+
> \[!NOTE\]
41+
>
42+
> **This version needs at least Alliance Auth v4.0.0b1!**
43+
>
44+
> Please make sure to update your Alliance Auth instance **before**
45+
> you install this version, otherwise, an update to Alliance Auth will
46+
> be pulled in unsupervised.
47+
48+
### Added
49+
50+
- Compatibility to Alliance Auth v4
51+
- Bootstrap 5
52+
- Django 4.2
53+
54+
### Changed
55+
56+
- JS modernized
57+
- CSS modernizes
58+
- Templates changed to Bootstrap 5
59+
- Translations improved
60+
61+
### Removed
62+
63+
- Compatibility to Alliance Auth v3
64+
3865
## \[2.0.0-beta.1\] - 2024-02-18
3966

4067
> \[!NOTE\]
@@ -57,16 +84,17 @@ Section Order:
5784
- CSS modernizes
5885
- Templates changed to Bootstrap 5
5986
- Translations improved
60-
- French
61-
- Chinese
62-
- Spanish
6387

6488
### Removed
6589

6690
- Compatibility to Alliance Auth v3
6791

6892
## \[1.2.0\] - 2023-10-04
6993

94+
> \[!NOTE\]
95+
>
96+
> **This is the last version compatible with Alliance Auth v3.**
97+
7098
### Added
7199

72100
- Support for lazy loading images, which should speed up the page load on larger scans

aa_intel_tool/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
# Django
66
from django.utils.translation import gettext_lazy as _
77

8-
__version__ = "2.0.0-beta.1"
8+
__version__ = "2.0.0"
99
__title__ = _("Intel Parser")

aa_intel_tool/tests/test_access.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def setUpClass(cls) -> None:
3737
cls.html_menu = f"""
3838
<li class="d-flex flex-wrap m-2 p-2 pt-0 pb-0 mt-0 mb-0 me-0 pe-0">
3939
<i class="nav-link fa-solid fa-clipboard-list fa-fw align-self-center me-3 active"></i>
40-
<a class="nav-link flex-fill align-self-center me-auto" href="{reverse('aa_intel_tool:intel_tool_index')}">
40+
<a class="nav-link flex-fill align-self-center me-auto active" href="{reverse('aa_intel_tool:intel_tool_index')}">
4141
Intel Parser
4242
</a>
4343
</li>

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dynamic = [
3838
"version",
3939
]
4040
dependencies = [
41-
"allianceauth>=4.0.0b1",
41+
"allianceauth<5.0.0,>=4",
4242
"allianceauth-app-utils>=1.19.1",
4343
"django-eveuniverse>=1.3",
4444
]

0 commit comments

Comments
 (0)