diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c25b9e..b671eb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,19 @@ This document records all notable changes to [pytest-socket](https://pypi.python.org/pypi/pytest-socket). This project attempts to adhere to [Semantic Versioning](http://semver.org/). +## [0.5.1][] (2020-01-23) + +### Fixes + +- Plugin no longer breaks on `doctests` #109 + +### Changes + +- Dev dependency `starlette` updated +- `make install` now installs dependencies if `poetry.lock` is missing/changed +- Added a GitHub Workflow for stale issues +- pre-commit auto-updated + ## [0.5.0][] (2021-12-23) ### Changes @@ -105,3 +118,4 @@ Maintenance release. [0.4.0]: https://github.com/miketheman/pytest-socket/compare/0.3.5...0.4.0 [0.4.1]: https://github.com/miketheman/pytest-socket/compare/0.4.0...0.4.1 [0.5.0]: https://github.com/miketheman/pytest-socket/compare/0.4.1...0.5.0 +[0.5.1]: https://github.com/miketheman/pytest-socket/compare/0.5.0...0.5.1 diff --git a/pyproject.toml b/pyproject.toml index 1946a7f..ca1a864 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-socket" -version = "0.5.0" +version = "0.5.1" description = "Pytest Plugin to disable socket calls during tests" authors = ["Mike Fiedler "] license = "MIT"