diff --git a/CHANGELOG.md b/CHANGELOG.md index dbd9185c..9bc0e09c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v0.9.0 (2024-05-07) + +### Feat + +- check if inline-snapshot is used in combination with xdist and notify the user that this is not possible + +### Fix + +- change the quoting of strings does not trigger an update + ## v0.8.2 (2024-04-24) ### Fix diff --git a/inline_snapshot/__init__.py b/inline_snapshot/__init__.py index e51aee0f..e68ba696 100644 --- a/inline_snapshot/__init__.py +++ b/inline_snapshot/__init__.py @@ -4,4 +4,4 @@ __all__ = ["snapshot", "external", "outsource"] -__version__ = "0.8.2" +__version__ = "0.9.0" diff --git a/pyproject.toml b/pyproject.toml index 1a881f1e..50a70bbb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ license = "MIT" name = "inline-snapshot" readme = "README.md" repository = "https://github.com/15r10nk/inline-snapshots" -version = "0.8.2" +version = "0.9.0" [tool.poetry.dependencies] asttokens = ">=2.0.5"