diff --git a/CHANGELOG.md b/CHANGELOG.md index 33bce42..634996b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.1.11 (2022-02-28) +### Fix +* Update dependencies ([`60c708f`](https://github.com/vberlier/pytest-insta/commit/60c708fe8e5e2fb1fcbd0fdff81ad62f7381c209)) + ## v0.1.10 (2021-04-07) ### Fix * Automatically reject dangling snapshots ([`1fed16f`](https://github.com/vberlier/pytest-insta/commit/1fed16fce67d01d73e942dd7feebcd76935409a5)) diff --git a/pyproject.toml b/pyproject.toml index 87eb471..3d57241 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-insta" -version = "0.1.10" +version = "0.1.11" description = "A practical snapshot testing plugin for pytest" authors = ["Valentin Berlier "] license = "MIT" diff --git a/pytest_insta/__init__.py b/pytest_insta/__init__.py index ad10b4f..497133f 100644 --- a/pytest_insta/__init__.py +++ b/pytest_insta/__init__.py @@ -2,4 +2,4 @@ from .format import * from .session import * -__version__ = "0.1.10" +__version__ = "0.1.11"