From 86eb2031170e5632f62b24716b0c5bd5c0677697 Mon Sep 17 00:00:00 2001 From: Arunim Chaudhary Date: Wed, 1 Nov 2023 13:48:21 +0530 Subject: [PATCH] Bump version to 1.0.0-beta.5 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- src/tirith/__init__.py | 2 +- src/tirith/cli.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d77ca8..391589c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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.5] - 2023-10-26 + +### Added +- terraform_plan provider - bugfixes + ## [1.0.0-beta.4] - 2023-10-26 ### Added diff --git a/setup.py b/setup.py index 46376cd..5db66cd 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def read(*names, **kwargs): setup( name="py-tirith", - version="1.0.0-beta.4", + version="1.0.0-beta.5", 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 7c173ad..c5e6ac9 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.4" +__version__ = "1.0.0-beta.5" __author__ = "StackGuardian" __license__ = "Apache" diff --git a/src/tirith/cli.py b/src/tirith/cli.py index a5d8b16..1473568 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.4") + parser.add_argument("--version", action="version", version="1.0.0-beta.5") args = parser.parse_args()