diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f8bfb8d..9e3a7502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.5.2 (2023-11-13) + +### Fix + +- remove upper bound from dependencies in pyproject.toml + ## v0.5.1 (2023-10-20) ### Fix diff --git a/inline_snapshot/__init__.py b/inline_snapshot/__init__.py index 9c9464df..fa041b61 100644 --- a/inline_snapshot/__init__.py +++ b/inline_snapshot/__init__.py @@ -2,4 +2,4 @@ __all__ = ["snapshot"] -__version__ = "0.5.1" +__version__ = "0.5.2" diff --git a/pyproject.toml b/pyproject.toml index 4b02922f..963508b9 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.5.1" +version = "0.5.2" [tool.poetry.dependencies] asttokens = ">=2.0.5"