diff --git a/CHANGELOG.md b/CHANGELOG.md index cae8f82..ec72595 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.1.9 (2021-04-07) +### Fix +* Handle recording and reviewing snapshots from subdirectories ([`2699b20`](https://github.com/vberlier/pytest-insta/commit/2699b20fc8f8e1052538b2709c0bab9ce7d34a8d)) + ## v0.1.8 (2021-04-02) ### Fix * **demo:** Embed font into svg for consistent rendering ([`df03d85`](https://github.com/vberlier/pytest-insta/commit/df03d85dcd10fd4901456b9c4c273cee8792d852)) diff --git a/pyproject.toml b/pyproject.toml index d5aa555..ebc45bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-insta" -version = "0.1.8" +version = "0.1.9" 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 096f9d6..3c90f7b 100644 --- a/pytest_insta/__init__.py +++ b/pytest_insta/__init__.py @@ -2,4 +2,4 @@ from .format import * from .session import * -__version__ = "0.1.8" +__version__ = "0.1.9"