diff --git a/CHANGELOG.md b/CHANGELOG.md index 08c39583de..ae98d4db33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,10 @@ - Test Ref resources to IAM Roles have good assume role documents. Example: Lambda Function Ref refers to an IAM Role that can be assume by Lambda. - More Warnings around hard coded values (Regions, AccountIds) to help with the practice of reusability +### 0.6.1 +###### Fixes +- Fixes an issue where Template.get_values would return `Ref: AWS::NoValue`. This will no longer be returned as it is considered to be a Null value. + ### 0.6.0 ###### Features - Update formatters to be similar from JSON and text outputs and modularize for easier growth later diff --git a/src/cfnlint/version.py b/src/cfnlint/version.py index 25e4bd7a68..1d55f5376b 100644 --- a/src/cfnlint/version.py +++ b/src/cfnlint/version.py @@ -15,4 +15,4 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -__version__ = '0.6.0' +__version__ = '0.6.1'