diff --git a/CHANGELOG.md b/CHANGELOG.md index 7de90ff..5ce5bec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes in **salt-lint** are documented below. 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). ## [Unreleased] + +## [0.8.0] (2021-11-09) ### Fixed - False positive when detecting missing spaces in Jinja variables when the Jinja statement is nested in literal braces ([#272](https://github.com/warpnet/salt-lint/pull/272)). - Ensure a single missing quote in the file mode is also detected as incorrect quotation of a file mode ([#273](https://github.com/warpnet/salt-lint/pull/273)). @@ -44,7 +46,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), - Rules 901-915 to check for deprecated states and state options ([#214](https://github.com/warpnet/salt-lint/pull/214)). - This `CHANGELOG.md` file to be able to list all notable changes for each version of **salt-lint** ([#223](https://github.com/warpnet/salt-lint/pull/223)). -[Unreleased]: https://github.com/warpnet/salt-lint/compare/v0.7.0...HEAD +[Unreleased]: https://github.com/warpnet/salt-lint/compare/v0.8.0...HEAD +[0.8.0]: https://github.com/warpnet/salt-lint/compare/v0.7.0...v0.8.0 [0.7.0]: https://github.com/warpnet/salt-lint/compare/v0.6.1...v0.7.0 [0.6.1]: https://github.com/warpnet/salt-lint/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/warpnet/salt-lint/compare/v0.5.2...v0.6.0 diff --git a/docs/man/salt-lint.1 b/docs/man/salt-lint.1 index 2b32701..b947838 100644 --- a/docs/man/salt-lint.1 +++ b/docs/man/salt-lint.1 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.5. -.TH SALT-LINT "1" "November 2021" "salt-lint 0.7.0" "User Commands" +.TH SALT-LINT "1" "November 2021" "salt-lint 0.8.0" "User Commands" .SH NAME salt-lint - A command-line utility that checks for best practices in SaltStack. .SH SYNOPSIS diff --git a/saltlint/__init__.py b/saltlint/__init__.py index ca9186b..215296b 100644 --- a/saltlint/__init__.py +++ b/saltlint/__init__.py @@ -5,7 +5,7 @@ """ NAME = 'salt-lint' -VERSION = '0.7.0' +VERSION = '0.8.0' DESCRIPTION = __doc__ __author__ = 'Warpnet B.V.'