diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a94934..1cb1c3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - +## [1.8.4] - 2023-04-24 + +- [[#72](https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/pull/72)] Stop Windows hangs when last output is on stderr ([andrewesweet](https://github.com/andrewesweet)) +- [[#71](https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/pull/71)] Make cache directory path Windows friendly ([andrewesweet](https://github.com/andrewesweet)) ## [1.8.3] - 2023-04-16 @@ -200,7 +203,9 @@ All notable changes to this project will be documented in this file. -[Unreleased]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.8.2...HEAD +[Unreleased]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.8.4...HEAD +[1.8.4]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.8.3...v1.8.4 +[1.8.3]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.8.2...v1.8.3 [1.8.2]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.8.1...v1.8.2 [1.8.1]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.8.0...v1.8.1 [1.8.0]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.7.7...v1.8.0 diff --git a/tftest.py b/tftest.py index 96c71ef..a7767c7 100644 --- a/tftest.py +++ b/tftest.py @@ -43,7 +43,7 @@ from pathlib import Path from typing import List -__version__ = '1.8.3' +__version__ = '1.8.4' _LOGGER = logging.getLogger('tftest')