From 162d6f9d94297e0e3f957ca4e74c42da3801c1dc Mon Sep 17 00:00:00 2001 From: Ronny Vedrilla Date: Sat, 15 Feb 2025 08:58:28 +0100 Subject: [PATCH] Maintenance (v0.1.1) --- .gitignore | 2 -- CHANGES.md | 3 +++ pyproject.toml | 9 +++------ queuebie/__init__.py | 2 +- 4 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 83f347a..0c50de8 100644 --- a/.gitignore +++ b/.gitignore @@ -156,5 +156,3 @@ _build # Test databases *.sqlite - - diff --git a/CHANGES.md b/CHANGES.md index a2181b5..1f7b515 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,7 @@ # Changelog +**0.1.1** (2025-02-15) + * Maintenance updates via ambient-package-update + * *0.1.0* (2025-01-29) * Project init diff --git a/pyproject.toml b/pyproject.toml index 99dc397..a438501 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -93,8 +93,8 @@ lint.select = [ "INP" # Ban PEP-420 implicit namespace packages ] lint.ignore = [ - 'TD002', # Missing author in TODO - 'TD003', # Missing issue link on the line following this TODO + "TD002", # Missing author in TODO + "TD003", # Missing issue link on the line following this TODO ] # Allow autofix for all enabled rules (when `--fix`) is provided. @@ -179,26 +179,23 @@ line-ending = "auto" # Allow seemingly unused imports "F401", ] - "**/tests/**/test_*.py" = [ # Allow boolean positional params in tests (for assertIs()) "FBT003", ] - "scripts/*.py" = [ # Checks for packages that are missing an __init__.py file "INP001", ] - ".ambient-package-update/*.py" = [ # Checks for packages that are missing an __init__.py file "INP001", ] - "docs/*.py" = [ # Checks for packages that are missing an __init__.py file "INP001", ] + [tool.tox] legacy_tox_ini = """ [testenv] diff --git a/queuebie/__init__.py b/queuebie/__init__.py index 24e2683..c10160d 100644 --- a/queuebie/__init__.py +++ b/queuebie/__init__.py @@ -1,6 +1,6 @@ """Simple message queue for commands and events (CQRS)""" -__version__ = "0.1.0" +__version__ = "0.1.1" from queuebie.registry import MessageRegistry