diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a419c87..5aee755 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,12 +7,16 @@ jobs: strategy: matrix: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] - django-version: ['4.2', '5.0'] + django-version: ['4.2', '5.0', '5.1'] exclude: - python-version: '3.8' django-version: '5.0' - python-version: '3.9' django-version: '5.0' + - python-version: '3.8' + django-version: '5.1' + - python-version: '3.9' + django-version: '5.1' steps: - uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index f064a7e..4758a75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,17 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.6.0 - Unreleased] +## [Unreleased] + + +## [1.7.0] + +### Added + +- Support for Django 5.1 +- Management command to export the monitoring data + +## [1.6.0] ### Added - Support for Python 3.11 and 3.12 @@ -106,7 +116,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial Release -[1.6.0 - Unreleased]: https://github.com/anexia-it/anexia-monitoring-django/ +[Unreleased]: https://github.com/anexia-it/anexia-monitoring-django/ +[1.7.0]: https://pypi.org/project/django-anexia-monitoring/1.7.0/ +[1.6.0]: https://pypi.org/project/django-anexia-monitoring/1.6.0/ [1.5.0]: https://pypi.org/project/django-anexia-monitoring/1.5.0/ [1.4.1]: https://pypi.org/project/django-anexia-monitoring/1.4.1/ [1.4.0]: https://pypi.org/project/django-anexia-monitoring/1.4.0/ diff --git a/README.md b/README.md index 8457cde..9aa1abb 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ If your project uses an older version of Django, you can choose an older version | This Project | Python Version | Django Version | |--------------|----------------|----------------| +| 1.7.* | 3.8 - 3.12 | 4.2, 5.0, 5.1 | | 1.6.* | 3.8 - 3.12 | 4.2, 5.0 | | 1.5.* | 3.7 - 3.10 | 3.2, 4.0, 4.1 | | 1.4.* | 3.7 - 3.10 | 3.2, 4.0 |