Skip to content

Commit

Permalink
bump: version 0.15.1 → 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
15r10nk committed Dec 12, 2024
1 parent 51a4fac commit 651b69a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 47 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@

<a id='changelog-0.16.0'></a>
# 0.16.0 — 2024-12-12

## Added

- [`inline_snapshot.extra.warns`](https://15r10nk.github.io/inline-snapshot/latest/extra/#inline_snapshot.extra.warns) to captures warnings and compares them against expected warnings.
``` python
def test_warns():
with warns(snapshot([(8, "UserWarning: some problem")]), include_line=True):
warn("some problem")
```

<a id='changelog-0.15.1'></a>
# 0.15.1 — 2024-12-10

Expand Down
45 changes: 0 additions & 45 deletions changelog.d/20241212_074058_15r10nk-git_warns.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.15.1"
version = "0.16.0"

[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 @@ -18,4 +18,4 @@
"Snapshot",
]

__version__ = "0.15.1"
__version__ = "0.16.0"

0 comments on commit 651b69a

Please sign in to comment.