diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eb5fcdc..74e53a85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.13.0 (2024-09-10) + +### Feat + +- added extra.prints +- 3.13 support +- strings with one line-break at the end become no multiline strings + ## v0.12.1 (2024-08-05) ### Fix diff --git a/pyproject.toml b/pyproject.toml index c9200c09..abbc155f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,7 +38,7 @@ keywords = [] name = "inline-snapshot" readme = "README.md" requires-python = ">=3.8" -version = "0.12.1" +version = "0.13.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 d7fab616..8467a556 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.12.1" +__version__ = "0.13.0"