Update `CHANGELOG` and version.
parent
544b2e68c0
commit
31ee37a151
21
CHANGELOG.md
21
CHANGELOG.md
|
|
@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
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).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.25.0](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.25.0) - 2023-04-18
|
||||||
|
- Add `Django 4.2` support.
|
||||||
|
- Drop `Django 2.2` support.
|
||||||
|
- Fix `date_hierarchy` with multiple fields (`ForeignKey`). #244
|
||||||
|
- Fix tabs not working with non-ASCII alphanumeric characters. #237
|
||||||
|
- Fix multidb tests.
|
||||||
|
- Add `css_generic_link_active_color` field to use on active tab (tabbed changeform). #232
|
||||||
|
- Replace `flake8` with `Ruff`.
|
||||||
|
- Switch from `setup.py` to `pyproject.toml`.
|
||||||
|
- Add `pyupgrade` to `pre-commit` config.
|
||||||
|
- Add `django-upgrade` to `pre-commit` hooks.
|
||||||
|
- Upgrade syntax for `Python >= 3.8`.
|
||||||
|
- Run `pre-commit` also with `tox`.
|
||||||
|
- Reformat migrations.
|
||||||
|
- Bump requirements.
|
||||||
|
- Bump `pre-commit` hooks.
|
||||||
|
- Pin test requirements.
|
||||||
|
- Add pull request template.
|
||||||
|
- Add `CODE_OF_CONDUCT.md`. #238
|
||||||
|
- Rename default branch from `master` to `main`.
|
||||||
|
|
||||||
## [0.24.2](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.24.2) - 2022-12-19
|
## [0.24.2](https://github.com/fabiocaccamo/django-admin-interface/releases/tag/0.24.2) - 2022-12-19
|
||||||
- Fix modal and popup opening at the same time. #228
|
- Fix modal and popup opening at the same time. #228
|
||||||
- Make `Theme.get_active_theme` class method a manager method. (by [@MounirMesselmeni](https://github.com/MounirMesselmeni) in #230)
|
- Make `Theme.get_active_theme` class method a manager method. (by [@MounirMesselmeni](https://github.com/MounirMesselmeni) in #230)
|
||||||
|
|
|
||||||
|
|
@ -7,4 +7,4 @@ __description__ = (
|
||||||
__email__ = "fabio.caccamo@gmail.com"
|
__email__ = "fabio.caccamo@gmail.com"
|
||||||
__license__ = "MIT"
|
__license__ = "MIT"
|
||||||
__title__ = "django-admin-interface"
|
__title__ = "django-admin-interface"
|
||||||
__version__ = "0.24.2"
|
__version__ = "0.25.0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue