diff --git a/CHANGELOG.md b/CHANGELOG.md index 13a5199..0bcdc93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.0-beta.9] - 2023-11-16 + +### Added +- `terraform_plan`: Add `terraform_version` operation type to get the terraform version from the plan file +- `terraform_plan`: Add `provider_config` operation type to get the provider config from the plan file, like checking for the `region` in the `aws` provider, and the version of the provider + +### Fixed +- `evaluator/RegexMatch`: Change the method to check regex match to `re.search` instead of `re.match` to make sure the regex is matched anywhere in the string + ## [1.0.0-beta.8] - 2023-11-13 ### Fixed diff --git a/setup.py b/setup.py index 9b9d596..842f534 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def read(*names, **kwargs): setup( name="py-tirith", - version="1.0.0-beta.8", + version="1.0.0-beta.9", license="Apache", description="Tirith simplifies defining Policy as Code.", long_description_content_type="text/markdown", diff --git a/src/tirith/__init__.py b/src/tirith/__init__.py index a820aa7..15fb7d8 100644 --- a/src/tirith/__init__.py +++ b/src/tirith/__init__.py @@ -2,6 +2,6 @@ tirith: Execute policies defined using Tirith (StackGuardian Policy Framework) """ -__version__ = "1.0.0-beta.8" +__version__ = "1.0.0-beta.9" __author__ = "StackGuardian" __license__ = "Apache" diff --git a/src/tirith/cli.py b/src/tirith/cli.py index 13fc6b5..98d2a81 100755 --- a/src/tirith/cli.py +++ b/src/tirith/cli.py @@ -84,7 +84,7 @@ def __init__(self, prog="PROG") -> None: action="store_true", help="Show detailed logs of from the run", ) - parser.add_argument("--version", action="version", version="1.0.0-beta.8") + parser.add_argument("--version", action="version", version="1.0.0-beta.9") args = parser.parse_args()