diff --git a/CHANGELOG.md b/CHANGELOG.md index a3979db..cae8f82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.1.8 (2021-04-02) +### Fix +* **demo:** Embed font into svg for consistent rendering ([`df03d85`](https://github.com/vberlier/pytest-insta/commit/df03d85dcd10fd4901456b9c4c273cee8792d852)) + ## v0.1.7 (2021-03-03) ### Fix * Don't use textwrap.indent because all lines need to be prefixed ([`8eaa8c2`](https://github.com/vberlier/pytest-insta/commit/8eaa8c207f8f12566da0d8f4fae0933f72d9afd7)) diff --git a/pyproject.toml b/pyproject.toml index 6732ee4..82d5021 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-insta" -version = "0.1.7" +version = "0.1.8" 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 89bab81..096f9d6 100644 --- a/pytest_insta/__init__.py +++ b/pytest_insta/__init__.py @@ -2,4 +2,4 @@ from .format import * from .session import * -__version__ = "0.1.7" +__version__ = "0.1.8"