Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
refeed committed Apr 2, 2024
1 parent f80248e commit c710d8a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.12] - 2024-04-02

### Fixed
- `terraform_plan/referenced_by`: Fixed bug where `referenced_by` was not accounting references in another modules
- `terraform_plan/referenced_by`: Now outputs the result per resource instead of a single boolean


## [1.0.0-beta.11] - 2024-02-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def read(*names, **kwargs):

setup(
name="py-tirith",
version="1.0.0-beta.11",
version="1.0.0-beta.12",
license="Apache",
description="Tirith simplifies defining Policy as Code.",
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion src/tirith/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
tirith: Execute policies defined using Tirith (StackGuardian Policy Framework)
"""

__version__ = "1.0.0-beta.11"
__version__ = "1.0.0-beta.12"
__author__ = "StackGuardian"
__license__ = "Apache"
2 changes: 1 addition & 1 deletion src/tirith/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.11")
parser.add_argument("--version", action="version", version="1.0.0-beta.12")

args = parser.parse_args()

Expand Down
1 change: 1 addition & 0 deletions tests/providers/terraform_plan/test_direct_references.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,4 +233,5 @@ def test_direct_referenced_by_should_fail_when_the_resource_isnt_found_in_resour
assert len(result) == 1
assert result[0]["value"] is False


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

0 comments on commit c710d8a

Please sign in to comment.