Skip to content

Commit b36519b

Browse files
refeedarunim2405
authored andcommitted
Bump version to 1.0.0-beta.3
1 parent 3ccda91 commit b36519b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.3] - 2023-07-20
9+
10+
### Fixed
11+
- Hard set PyYAML requirement to 6.0.1 due to Cython incompatibilities, see https://stackoverflow.com/q/76708329/6156700
12+
813
## [1.0.0-beta.2] - 2023-05-18
914

1015
### Added

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.2"
5+
__version__ = "1.0.0-beta.3"
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.2")
87+
parser.add_argument("--version", action="version", version="1.0.0-beta.3")
8888

8989
args = parser.parse_args()
9090

0 commit comments

Comments
 (0)