diff --git a/docs/Changelog.md b/docs/Changelog.md index 24c7af40c..7dfa5308b 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,5 +1,10 @@ # Changelog +## v0.8.1 - 2021-03-21 + +1. Fix bug in management UI resource editor +2. Proper support for query string written in `path` option + ## v0.8 - 2021-03-20 1. [Management API/UI](Management.md) Improvements: diff --git a/mockintosh/__init__.py b/mockintosh/__init__.py index 1ea62cbd9..4f3863387 100644 --- a/mockintosh/__init__.py +++ b/mockintosh/__init__.py @@ -36,7 +36,7 @@ from mockintosh.servers import HttpServer, TornadoImpl from mockintosh.performance import PerformanceProfile -__version__ = "0.8" +__version__ = "0.8.1" __location__ = path.abspath(path.dirname(__file__)) should_cov = environ.get('COVERAGE_PROCESS_START', False)