From a6e26a4d0a76dacef442a5dfcead734b6e0bab9d Mon Sep 17 00:00:00 2001 From: Ronny Vedrilla Date: Thu, 3 Apr 2025 11:46:06 +0200 Subject: [PATCH 1/2] Maintenance (v0.3.2) --- .github/workflows/ci.yml | 2 +- .pre-commit-config.yaml | 6 +++--- CHANGES.md | 3 +++ pyproject.toml | 4 ++-- queuebie/__init__.py | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4aa146d..bcbd9c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: strategy: matrix: python-version: ['3.10', '3.11', '3.12', '3.13', ] - django-version: ['42', '50', '51', ] + django-version: ['42', '51', '52', ] exclude: - python-version: '3.9' diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8a373dd..5d1dd65 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.9.3 + rev: v0.11.2 hooks: # Run the Ruff formatter. - id: ruff-format @@ -16,7 +16,7 @@ repos: hooks: - id: blacken-docs additional_dependencies: - - black==24.10.0 + - black==25.1.0 files: '(?:README\.md|\.ambient-package-update\/templates\/snippets\/.*\.tpl|docs\/.*\.(?:md|rst))' - repo: https://github.com/asottile/pyupgrade @@ -26,7 +26,7 @@ repos: args: [ --py310-plus ] - repo: https://github.com/adamchainz/django-upgrade - rev: 1.22.2 + rev: 1.24.0 hooks: - id: django-upgrade args: [--target-version, "4.2"] diff --git a/CHANGES.md b/CHANGES.md index aea6e80..f3691c2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # Changelog +**0.3.2** (2025-04-03) + * Maintenance updates via ambient-package-update + * *0.3.1* (2025-03-19) * Added a paranoid-ish test to check that the import logic isn't breaking any testing functionality diff --git a/pyproject.toml b/pyproject.toml index a438501..fca9f23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,8 +13,8 @@ classifiers = [ "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 4.2", - "Framework :: Django :: 5.0", "Framework :: Django :: 5.1", + "Framework :: Django :: 5.2", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", @@ -202,8 +202,8 @@ legacy_tox_ini = """ # Django deprecation overview: https://www.djangoproject.com/download/ deps = django42: Django==4.2.* - django50: Django==5.0.* django51: Django==5.1.* + django52: Django==5.2.* extras = dev, commands = coverage run -m pytest --ds settings tests diff --git a/queuebie/__init__.py b/queuebie/__init__.py index 60deda3..14b4230 100644 --- a/queuebie/__init__.py +++ b/queuebie/__init__.py @@ -1,6 +1,6 @@ """Simple message queue for commands and events (CQRS)""" -__version__ = "0.3.1" +__version__ = "0.3.2" from queuebie.registry import MessageRegistry From 3f00a64bdbcf2b532a259a07963f8bc180594c8f Mon Sep 17 00:00:00 2001 From: Ronny Vedrilla Date: Thu, 3 Apr 2025 12:42:58 +0200 Subject: [PATCH 2/2] Maintenance (v0.3.2) --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcbd9c0..3698e0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,13 +34,11 @@ jobs: exclude: - python-version: '3.9' - django-version: 50 + django-version: 52 - python-version: '3.9' django-version: 51 - python-version: "3.13" django-version: 42 - - python-version: "3.13" - django-version: 50 steps: - uses: actions/checkout@v4