Skip to content

Commit

Permalink
v11.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Aug 12, 2024
1 parent a18b133 commit 53196bb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', ]
django-version: ['42', '50', ]
django-version: ['42', '50', '51', ]

exclude:
- python-version: '3.9'
Expand Down
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: [ --py39-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: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Changelog

**11.2.0** (2024-08-12)
* Added Django 5.1 support

**11.1.2** (2024-07-19)
* Added limitation paragraph to object ownership admin documentation


**11.1.1** (2024-07-19)
* Fixed a bug leading to missing docs

Expand Down
2 changes: 1 addition & 1 deletion ambient_toolbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets."""

__version__ = "11.1.2"
__version__ = "11.2.0"
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ classifiers = [
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
Expand Down Expand Up @@ -206,6 +207,7 @@ legacy_tox_ini = """
deps =
django42: Django==4.2.*
django50: Django==5.0.*
django51: Django==5.1.*
extras = dev,drf,graphql,bleacher,sentry,view-layer,
commands =
coverage run -m pytest --ds settings tests
Expand Down

0 comments on commit 53196bb

Please sign in to comment.