From 8f453585b1dfb46e775b5d1f6b695bd3f484fa3a Mon Sep 17 00:00:00 2001 From: Frank Hoffmann <15r10nk-git@polarbit.de> Date: Wed, 4 Dec 2024 18:32:22 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.14.0=20=E2=86=92=200.14.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 11 ++++++ changelog.d/20241204_073038_15r10nk-git.md | 42 ---------------------- changelog.d/20241204_183031_15r10nk-git.md | 42 ---------------------- pyproject.toml | 2 +- src/inline_snapshot/__init__.py | 2 +- 5 files changed, 13 insertions(+), 86 deletions(-) delete mode 100644 changelog.d/20241204_073038_15r10nk-git.md delete mode 100644 changelog.d/20241204_183031_15r10nk-git.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b514de4..8f1d5b79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,15 @@ + +# 0.14.1 — 2024-12-04 + +## Fixed + +- Don't crash for snapshots like `snapshot(f"")` (#139) + It first appeared with pytest-8.3.4, but already existed before for cpython-3.11. + f-strings in snapshots are currently not official supported, but they should not lead to crashes. + +- skip formatting if black returns an error (#138) + # 0.14.0 — 2024-11-10 diff --git a/changelog.d/20241204_073038_15r10nk-git.md b/changelog.d/20241204_073038_15r10nk-git.md deleted file mode 100644 index 1c2ec9c3..00000000 --- a/changelog.d/20241204_073038_15r10nk-git.md +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - -### Fixed - -- Don't crash for snapshots like `snapshot(f"")` (#139) - It first appeared with pytest-8.3.4, but already existed before for cpython-3.11. - f-strings in snapshots are currently not official supported, but they should not lead to crashes. - - diff --git a/changelog.d/20241204_183031_15r10nk-git.md b/changelog.d/20241204_183031_15r10nk-git.md deleted file mode 100644 index 0d329731..00000000 --- a/changelog.d/20241204_183031_15r10nk-git.md +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - -### Fixed - -- skip formatting if black returns an error (#138) - - - diff --git a/pyproject.toml b/pyproject.toml index 55c95fa0..3f0b71c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,7 +37,7 @@ keywords = [] name = "inline-snapshot" readme = "README.md" requires-python = ">=3.8" -version = "0.14.0" +version = "0.14.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 08cab885..f69db109 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.14.0" +__version__ = "0.14.1"