File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
66and 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
Original file line number Diff line number Diff line change 22tirith: 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"
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments