From 84c496c648077d9a70cc1d10c7b0cbb944d8be1d Mon Sep 17 00:00:00 2001 From: Frank Hoffmann <15r10nk-git@polarbit.de> Date: Wed, 18 Sep 2024 21:03:49 +0200 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.13.0=20=E2=86=92=200.13.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- src/inline_snapshot/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74e53a85..989c1bff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.13.1 (2024-09-18) + +### Fix + +- Use tomllib instead of PyPI toml on Python 3.11 and later + ## v0.13.0 (2024-09-10) ### Feat diff --git a/pyproject.toml b/pyproject.toml index ba34f1f8..f439a583 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ keywords = [] name = "inline-snapshot" readme = "README.md" requires-python = ">=3.8" -version = "0.13.0" +version = "0.13.1" [project.entry-points.pytest11] inline_snapshot = "inline_snapshot.pytest_plugin" diff --git a/src/inline_snapshot/__init__.py b/src/inline_snapshot/__init__.py index 8467a556..a373ce4f 100644 --- a/src/inline_snapshot/__init__.py +++ b/src/inline_snapshot/__init__.py @@ -8,4 +8,4 @@ __all__ = ["snapshot", "external", "outsource", "customize_repr", "HasRepr"] -__version__ = "0.13.0" +__version__ = "0.13.1"