From a76236ac36fdb87fe11ae688720266780d4cc8b0 Mon Sep 17 00:00:00 2001 From: Ludo Date: Wed, 2 Nov 2022 14:48:18 +0100 Subject: [PATCH] bump version --- CHANGELOG.md | 8 ++++++-- tftest.py | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 968c584..068b32f 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.7.6] - 2022-11-02 + +- [[#62](https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/pull/62)] Inherit TerraformJSONBase from Mapping ABC ([juliocc](https://github.com/juliocc)) ## [1.7.5] - 2022-11-02 @@ -171,7 +174,8 @@ All notable changes to this project will be documented in this file. -[Unreleased]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.7.5...HEAD +[Unreleased]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.7.6...HEAD +[1.7.6]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.7.5...v1.7.6 [1.7.5]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.7.4...v1.7.5 [1.7.4]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.7.3...v1.7.4 [1.7.3]: https://github.com/GoogleCloudPlatform/terraform-python-testing-helper/compare/v1.7.2...v1.7.3 diff --git a/tftest.py b/tftest.py index 02cab59..04f80bf 100644 --- a/tftest.py +++ b/tftest.py @@ -43,7 +43,7 @@ from pathlib import Path from typing import List -__version__ = '1.7.5' +__version__ = '1.7.6' _LOGGER = logging.getLogger('tftest')