Skip to content

Commit

Permalink
chore: bump version to v0.9.2 (#307)
Browse files Browse the repository at this point in the history
Signed-off-by: Roald Nefs <info@roaldnefs.com>
  • Loading branch information
roaldnefs authored Feb 9, 2023
1 parent 98bdb20 commit ad1a4df
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ 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).

## [0.9.2] (2023-02-09)
### Fixed
- Ensure version identification adheres to [PEP440](https://peps.python.org/pep-0440/) ([!304](https://github.com/warpnet/salt-lint/issues/304))

## [0.9.1] (2023-01-16)
### Fixed
- Revert changes to rule 210 ([!299](https://github.com/warpnet/salt-lint/issues/299))
Expand Down Expand Up @@ -54,7 +58,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.9.1...HEAD
[Unreleased]: https://github.com/warpnet/salt-lint/compare/v0.9.2...HEAD
[0.9.2]: https://github.com/warpnet/salt-lint/compare/v0.9.1...v0.9.2]
[0.9.1]: https://github.com/warpnet/salt-lint/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/warpnet/salt-lint/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/warpnet/salt-lint/compare/v0.7.0...v0.8.0
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ To use salt-lint with [pre-commit](https://pre-commit.com), just add the followi
---
repos:
- repo: https://github.com/warpnet/salt-lint
rev: v0.9.0
rev: v0.9.2
hooks:
- id: salt-lint
```
Expand Down
2 changes: 1 addition & 1 deletion docs/man/salt-lint.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.5.
.TH SALT-LINT "1" "January 2023" "salt-lint 0.9.0" "User Commands"
.TH SALT-LINT "1" "February 2023" "salt-lint 0.9.2" "User Commands"
.SH NAME
salt-lint - A command-line utility that checks for best practices in SaltStack.
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion saltlint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""

NAME = 'salt-lint'
VERSION = '0.9.1'
VERSION = '0.9.2'
DESCRIPTION = __doc__

__author__ = 'Warpnet B.V.'
Expand Down

0 comments on commit ad1a4df

Please sign in to comment.