From 55d889d5efc8212a1dbf14be30fb13211f53df94 Mon Sep 17 00:00:00 2001 From: Rafid Aslam Date: Wed, 19 Nov 2025 19:56:22 +0700 Subject: [PATCH] Bump version --- CHANGELOG.md | 7 +++++++ setup.py | 2 +- src/tirith/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89fd6c7..b2ed0df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.5] - 2025-11-19 + +### Fixed +- `json/get_value`: Fixed cases when the key is `*.something` +- `core`: Fixed support for YAML files through JSON provider + ## [1.0.4] - 2025-11-15 ### Fixed diff --git a/setup.py b/setup.py index 30e4ac7..7d07cb9 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ def read(*names, **kwargs): setup( name="py-tirith", - version="1.0.4", + version="1.0.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 3c8f614..151dee5 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.4" +__version__ = "1.0.5" __author__ = "StackGuardian" __license__ = "Apache"