Skip to content

Commit

Permalink
bump: version 0.14.0 → 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
15r10nk committed Dec 4, 2024
1 parent 55e42c7 commit 8f45358
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 86 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@

<a id='changelog-0.14.1'></a>
# 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)

<a id='changelog-0.14.0'></a>
# 0.14.0 — 2024-11-10

Expand Down
42 changes: 0 additions & 42 deletions changelog.d/20241204_073038_15r10nk-git.md

This file was deleted.

42 changes: 0 additions & 42 deletions changelog.d/20241204_183031_15r10nk-git.md

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/inline_snapshot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@

__all__ = ["snapshot", "external", "outsource", "customize_repr", "HasRepr"]

__version__ = "0.14.0"
__version__ = "0.14.1"

0 comments on commit 8f45358

Please sign in to comment.