Skip to content

Commit

Permalink
v24.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Aug 12, 2024
1 parent 5622b68 commit 9e4851b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.2
rev: v0.5.7
hooks:
# Run the Ruff linter.
- id: ruff
Expand All @@ -20,14 +20,14 @@ repos:
files: '(?:README\.md|docs\/.*\.(?:md|rst))'

- repo: https://github.com/asottile/pyupgrade
rev: v3.16.0
rev: v3.17.0
hooks:
- id: pyupgrade
args: [ --py38-plus ]
stages: [ push ]

- repo: https://github.com/adamchainz/django-upgrade
rev: 1.19.0
rev: 1.20.0
hooks:
- id: django-upgrade
args: [--target-version, "4.2"]
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

**24.8.1 (2024-08-12)**
* Added Django 5.1 support
* Linter updates

**24.7.8 (2024-07-18)**
* Fixed a bug with dependency to this package

Expand Down
2 changes: 1 addition & 1 deletion ambient_package_update/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Ambient package update tool for clean and swift maintenance"""

__version__ = "24.7.8"
__version__ = "24.8.1"
1 change: 1 addition & 0 deletions ambient_package_update/metadata/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
SUPPORTED_DJANGO_VERSIONS = [
"4.2",
"5.0",
"5.1",
]

SUPPORTED_PYTHON_VERSIONS = [
Expand Down
6 changes: 3 additions & 3 deletions ambient_package_update/templates/.pre-commit-config.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.2
rev: v0.5.7
hooks:
# Run the Ruff linter.
- id: ruff
Expand All @@ -20,14 +20,14 @@ repos:
files: '(?:README\.md|docs\/.*\.(?:md|rst))'

- repo: https://github.com/asottile/pyupgrade
rev: v3.16.0
rev: v3.17.0
hooks:
- id: pyupgrade
args: [ --py{{ supported_python_versions.0|replace(".", "") }}-plus ]
stages: [ push ]

- repo: https://github.com/adamchainz/django-upgrade
rev: 1.19.0
rev: 1.20.0
hooks:
- id: django-upgrade
args: [--target-version, "{{ supported_django_versions.0 }}"]
Expand Down

0 comments on commit 9e4851b

Please sign in to comment.