diff --git a/CHANGELOG.md b/CHANGELOG.md index dd95e646..1dded93e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. -## [1.3.2] - 2022-1-27 +## [1.3.3] - 2022-2-3 +### Fixes +- Fix CI, force `pycfmodel` to use version `0.13.0`. + +## [1.3.2] - 2022-2-3 ### Updates - Stop logging when conditions are ignored in `CrossAccountCheckingRule`, `KMSKeyWildcardPrincipalRule`, `S3BucketPolicyPrincipalRule`, `SQSQueuePolicyPublicRule` and `GenericWildcardPrincipalRule`. diff --git a/cfripper/__version__.py b/cfripper/__version__.py index 1a5c6eb0..be771db7 100644 --- a/cfripper/__version__.py +++ b/cfripper/__version__.py @@ -1,3 +1,3 @@ -VERSION = (1, 3, 2) +VERSION = (1, 3, 3) __version__ = ".".join(map(str, VERSION)) diff --git a/requirements.txt b/requirements.txt index 76ce89e7..5b2c630a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ # -# This file is autogenerated by pip-compile with python 3.10 +# This file is autogenerated by pip-compile with python 3.9 # To update, run: # # make freeze diff --git a/setup.py b/setup.py index 4360c65e..13ac5b31 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ "cfn_flip>=1.2.0", "click~=7.1.1", "pluggy~=0.13.1", - "pycfmodel>=0.13.0", + "pycfmodel==0.13.0", "pydash~=4.7.6", "PyYAML>=4.2b1", ]