From b957582632034c4c1035dfd3c9685b3dd71dc1ad Mon Sep 17 00:00:00 2001 From: Ronny Vedrilla Date: Wed, 11 Sep 2024 09:19:33 +0200 Subject: [PATCH] v11.2.2 --- .pre-commit-config.yaml | 4 ++-- CHANGES.md | 4 ++++ ambient_toolbox/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index fa00874..9916b11 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.5.7 + rev: v0.6.4 hooks: # Run the Ruff linter. - id: ruff @@ -27,7 +27,7 @@ repos: stages: [ push ] - repo: https://github.com/adamchainz/django-upgrade - rev: 1.20.0 + rev: 1.21.0 hooks: - id: django-upgrade args: [--target-version, "4.2"] diff --git a/CHANGES.md b/CHANGES.md index 6d6487c..bfd6641 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changelog +**11.2.2** (2024-09-11) + * Fixed issue with package name + * Updated linters + **11.2.1** (2024-08-12) * Fixed test matrix diff --git a/ambient_toolbox/__init__.py b/ambient_toolbox/__init__.py index c90ed7d..c9f0e14 100644 --- a/ambient_toolbox/__init__.py +++ b/ambient_toolbox/__init__.py @@ -1,3 +1,3 @@ """Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets.""" -__version__ = "11.2.1" +__version__ = "11.2.2" diff --git a/pyproject.toml b/pyproject.toml index eff6b1a..c0cfb12 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.4"] build-backend = "flit_core.buildapi" [project] -name = "ambient_toolbox" +name = "ambient-toolbox" authors = [ {'name' = 'Ambient Digital', 'email' = 'hello@ambient.digital'}, ]