Skip to content

Commit

Permalink
bump: version 0.13.4 → 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
15r10nk committed Nov 10, 2024
1 parent 7b45124 commit a2aad52
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 127 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@

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

## Removed

- removed the `"Programming Language :: Python :: Implementation :: PyPy"` classifier which was incorrect, because inline-snapshot can not fix snapshots on pypy.
inline-snapshot now enforces `--inline-snapshot=disable` when used with an implementation other than cpython, which allows it to be used in packages that want to support pypy.

## Added

- command line shortcuts can be defined to simplify your workflows. `--review` and `--fix` are defined by default. See the [documentation](https://15r10nk.github.io/inline-snapshot/configuration/) for details.

## Changed

- `--inline-snapshot=create/fix/trim/update` will no longer show reports for other categories.
You can use `--inline-snapshot=create,report` if you want to use the old behaviour.

<a id='changelog-0.13.4'></a>
# 0.13.4 — 2024-11-07

Expand Down
40 changes: 0 additions & 40 deletions changelog.d/20241108_192001_15r10nk-git_fix_cli.md

This file was deleted.

43 changes: 0 additions & 43 deletions changelog.d/20241108_232134_15r10nk-git_fix_cli.md

This file was deleted.

42 changes: 0 additions & 42 deletions changelog.d/20241109_074441_15r10nk-git_fix_cli.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.13.4"
version = "0.14.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 @@ -8,4 +8,4 @@

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

__version__ = "0.13.4"
__version__ = "0.14.0"

0 comments on commit a2aad52

Please sign in to comment.