Skip to content

Commit c710d8a

Browse files
committed
Bump version
1 parent f80248e commit c710d8a

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.0-beta.12] - 2024-04-02
9+
10+
### Fixed
11+
- `terraform_plan/referenced_by`: Fixed bug where `referenced_by` was not accounting references in another modules
12+
- `terraform_plan/referenced_by`: Now outputs the result per resource instead of a single boolean
13+
14+
815
## [1.0.0-beta.11] - 2024-02-22
916

1017
### Fixed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def read(*names, **kwargs):
2222

2323
setup(
2424
name="py-tirith",
25-
version="1.0.0-beta.11",
25+
version="1.0.0-beta.12",
2626
license="Apache",
2727
description="Tirith simplifies defining Policy as Code.",
2828
long_description_content_type="text/markdown",

src/tirith/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
tirith: Execute policies defined using Tirith (StackGuardian Policy Framework)
33
"""
44

5-
__version__ = "1.0.0-beta.11"
5+
__version__ = "1.0.0-beta.12"
66
__author__ = "StackGuardian"
77
__license__ = "Apache"

src/tirith/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def __init__(self, prog="PROG") -> None:
8484
action="store_true",
8585
help="Show detailed logs of from the run",
8686
)
87-
parser.add_argument("--version", action="version", version="1.0.0-beta.11")
87+
parser.add_argument("--version", action="version", version="1.0.0-beta.12")
8888

8989
args = parser.parse_args()
9090

tests/providers/terraform_plan/test_direct_references.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,4 +233,5 @@ def test_direct_referenced_by_should_fail_when_the_resource_isnt_found_in_resour
233233
assert len(result) == 1
234234
assert result[0]["value"] is False
235235

236+
236237
# TODO: Add tests for using the resources inside a recursive tf modules

0 commit comments

Comments
 (0)