From 57c533f0d95b6955940f0b70ef4a823c12abc6c9 Mon Sep 17 00:00:00 2001 From: Frank Hoffmann <15r10nk-git@polarbit.de> Date: Mon, 22 Jul 2024 21:55:10 +0200 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.11.0=20=E2=86=92=200.12.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- src/inline_snapshot/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b747b11f..7617a8b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.12.0 (2024-07-22) + +### Feat + +- implement extra.raises +- added inline_snapshot.testing.Example which can be used to test 3rd-party extensions + ## v0.11.0 (2024-07-07) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 2044cb40..fc73ddc0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ license = "MIT" name = "inline-snapshot" readme = "README.md" requires-python = ">=3.8" -version = "0.11.0" +version = "0.12.0" [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 cc261cdf..1c64ff9b 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.11.0" +__version__ = "0.12.0"