Skip to content

Commit ad1a4df

Browse files
authored
chore: bump version to v0.9.2 (#307)
Signed-off-by: Roald Nefs <info@roaldnefs.com>
1 parent 98bdb20 commit ad1a4df

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes in **salt-lint** are documented below.
33

44
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).
55

6+
## [0.9.2] (2023-02-09)
7+
### Fixed
8+
- Ensure version identification adheres to [PEP440](https://peps.python.org/pep-0440/) ([!304](https://github.com/warpnet/salt-lint/issues/304))
9+
610
## [0.9.1] (2023-01-16)
711
### Fixed
812
- Revert changes to rule 210 ([!299](https://github.com/warpnet/salt-lint/issues/299))
@@ -54,7 +58,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5458
- Rules 901-915 to check for deprecated states and state options ([#214](https://github.com/warpnet/salt-lint/pull/214)).
5559
- 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)).
5660

57-
[Unreleased]: https://github.com/warpnet/salt-lint/compare/v0.9.1...HEAD
61+
[Unreleased]: https://github.com/warpnet/salt-lint/compare/v0.9.2...HEAD
62+
[0.9.2]: https://github.com/warpnet/salt-lint/compare/v0.9.1...v0.9.2]
5863
[0.9.1]: https://github.com/warpnet/salt-lint/compare/v0.9.0...v0.9.1
5964
[0.9.0]: https://github.com/warpnet/salt-lint/compare/v0.8.0...v0.9.0
6065
[0.8.0]: https://github.com/warpnet/salt-lint/compare/v0.7.0...v0.8.0

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ To use salt-lint with [pre-commit](https://pre-commit.com), just add the followi
170170
---
171171
repos:
172172
- repo: https://github.com/warpnet/salt-lint
173-
rev: v0.9.0
173+
rev: v0.9.2
174174
hooks:
175175
- id: salt-lint
176176
```

docs/man/salt-lint.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.5.
2-
.TH SALT-LINT "1" "January 2023" "salt-lint 0.9.0" "User Commands"
2+
.TH SALT-LINT "1" "February 2023" "salt-lint 0.9.2" "User Commands"
33
.SH NAME
44
salt-lint - A command-line utility that checks for best practices in SaltStack.
55
.SH SYNOPSIS

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.9.1'
8+
VERSION = '0.9.2'
99
DESCRIPTION = __doc__
1010

1111
__author__ = 'Warpnet B.V.'

0 commit comments

Comments
 (0)