Skip to content

Commit cb94506

Browse files
authored
chore: bump version to v0.6.0 (#251)
1 parent 823e864 commit cb94506

File tree

6 files changed

+11
-8
lines changed

6 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,13 @@
22
All notable changes in **salt-lint** are documented below.
33

44
## [Unreleased]
5+
6+
## [0.6.0] (2021-06-01)
57
### Deprecated
6-
- Drop Python 2.7 support ((#239)[https://github.com/warpnet/salt-lint/pull/239]).
8+
- Drop Python 2.7 support ([#239](https://github.com/warpnet/salt-lint/pull/239)).
79

810
### Added
9-
- Rule 216, 217 and 218 for catching common typographical errors ((#249)[https://github.com/warpnet/salt-lint/pull/249]).
11+
- Rule 216, 217 and 218 for catching common typographical errors ([#249](https://github.com/warpnet/salt-lint/pull/249)).
1012

1113
## [0.5.2] (2021-01-29)
1214
### Fixed
@@ -24,7 +26,8 @@ All notable changes in **salt-lint** are documented below.
2426
- Rules 901-915 to check for deprecated states and state options ([#214](https://github.com/warpnet/salt-lint/pull/214)).
2527
- 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)).
2628

27-
[Unreleased]: https://github.com/warpnet/salt-lint/compare/v0.5.2...HEAD
29+
[Unreleased]: https://github.com/warpnet/salt-lint/compare/v0.6.0...HEAD
30+
[0.6.0]: https://github.com/warpnet/salt-lint/compare/v0.5.2...v0.6.0
2831
[0.5.2]: https://github.com/warpnet/salt-lint/compare/v0.5.1...v0.5.2
2932
[0.5.1]: https://github.com/warpnet/salt-lint/compare/v0.5.0...v0.5.1
3033
[0.5.0]: https://github.com/warpnet/salt-lint/compare/v0.4.2...v0.5.0

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ To use salt-lint with [pre-commit](https://pre-commit.com), just add the follow
173173
# See usage instructions at http://pre-commit.com
174174
175175
- repo: https://github.com/warpnet/salt-lint
176-
rev: v0.5.1
176+
rev: v0.6.0
177177
hooks:
178178
- id: salt-lint
179179
```

saltlint/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66

77
NAME = 'salt-lint'
8-
VERSION = '0.5.2'
8+
VERSION = '0.6.0'
99
DESCRIPTION = __doc__
1010

1111
__author__ = 'Warpnet B.V.'

saltlint/rules/TypoContentsRule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ class TypoContentsRule(TypographicalErrorRule):
1212
id = '218'
1313
shortdesc = '"content" looks like a typo. Did you mean "contents"?'
1414
description = '"content" looks like a typo. Did you mean "contents"?'
15-
version_added = 'develop'
15+
version_added = 'v0.6.0'
1616
regex = re.compile(r"^\s+- content(|_pillar|_grains|_newline|_delimiter):")

saltlint/rules/TypoOnchangesRule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ class TypoOnchangesRule(TypographicalErrorRule):
1212
id = '216'
1313
shortdesc = '"onchange" looks like a typo. Did you mean "onchanges"?'
1414
description = '"onchange" looks like a typo. Did you mean "onchanges"?'
15-
version_added = 'develop'
15+
version_added = 'v0.6.0'
1616
regex = re.compile(r"^\s+- onchange(|_in|_any):")

saltlint/rules/TypoRequireRule.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ class TypoRequireRule(TypographicalErrorRule):
1212
id = '217'
1313
shortdesc = '"requires" looks like a typo. Did you mean "require"?'
1414
description = '"requires" looks like a typo. Did you mean "require"?'
15-
version_added = 'develop'
15+
version_added = 'v0.6.0'
1616
regex = re.compile(r"^\s+- requires(|_in|_any):")

0 commit comments

Comments
 (0)