Skip to content

Commit 74e8212

Browse files
authored
Maintenance (v0.3.2) (#13)
1 parent 70a4738 commit 74e8212

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,15 @@ jobs:
3030
strategy:
3131
matrix:
3232
python-version: ['3.10', '3.11', '3.12', '3.13', ]
33-
django-version: ['42', '50', '51', ]
33+
django-version: ['42', '51', '52', ]
3434

3535
exclude:
3636
- python-version: '3.9'
37-
django-version: 50
37+
django-version: 52
3838
- python-version: '3.9'
3939
django-version: 51
4040
- python-version: "3.13"
4141
django-version: 42
42-
- python-version: "3.13"
43-
django-version: 50
4442

4543
steps:
4644
- uses: actions/checkout@v4

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
repos:
55
- repo: https://github.com/astral-sh/ruff-pre-commit
6-
rev: v0.9.3
6+
rev: v0.11.2
77
hooks:
88
# Run the Ruff formatter.
99
- id: ruff-format
@@ -16,7 +16,7 @@ repos:
1616
hooks:
1717
- id: blacken-docs
1818
additional_dependencies:
19-
- black==24.10.0
19+
- black==25.1.0
2020
files: '(?:README\.md|\.ambient-package-update\/templates\/snippets\/.*\.tpl|docs\/.*\.(?:md|rst))'
2121

2222
- repo: https://github.com/asottile/pyupgrade
@@ -26,7 +26,7 @@ repos:
2626
args: [ --py310-plus ]
2727

2828
- repo: https://github.com/adamchainz/django-upgrade
29-
rev: 1.22.2
29+
rev: 1.24.0
3030
hooks:
3131
- id: django-upgrade
3232
args: [--target-version, "4.2"]

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
**0.3.2** (2025-04-03)
4+
* Maintenance updates via ambient-package-update
5+
36
* *0.3.1* (2025-03-19)
47
* Added a paranoid-ish test to check that the import logic isn't breaking any testing functionality
58

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ classifiers = [
1313
"Environment :: Web Environment",
1414
"Framework :: Django",
1515
"Framework :: Django :: 4.2",
16-
"Framework :: Django :: 5.0",
1716
"Framework :: Django :: 5.1",
17+
"Framework :: Django :: 5.2",
1818
"Intended Audience :: Developers",
1919
"License :: OSI Approved :: MIT License",
2020
"Natural Language :: English",
@@ -202,8 +202,8 @@ legacy_tox_ini = """
202202
# Django deprecation overview: https://www.djangoproject.com/download/
203203
deps =
204204
django42: Django==4.2.*
205-
django50: Django==5.0.*
206205
django51: Django==5.1.*
206+
django52: Django==5.2.*
207207
extras = dev,
208208
commands =
209209
coverage run -m pytest --ds settings tests

queuebie/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Simple message queue for commands and events (CQRS)"""
22

3-
__version__ = "0.3.1"
3+
__version__ = "0.3.2"
44

55
from queuebie.registry import MessageRegistry
66

0 commit comments

Comments
 (0)