Skip to content

Commit

Permalink
chore: bump version to v0.7.0 (#271)
Browse files Browse the repository at this point in the history
Bump version to `v0.7.0` and add missing changelog entries in
`CHANGELOG.md`.

Signed-off-by: Roald Nefs <info@roaldnefs.com>
  • Loading branch information
roaldnefs authored Nov 1, 2021
1 parent 545f305 commit 54fead1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
# Changelog
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.6.1] (2021-06-01)
## [0.7.0] (2021-11-01)
### Added
- Add Python 3.10 support ([#265](https://github.com/warpnet/salt-lint/pull/265)).
- Add initial man page ([#270](https://github.com/warpnet/salt-lint/pull/270)).

### Fixed
- Close temporary file after writing to STDIN ([#263](https://github.com/warpnet/salt-lint/pull/263)).

## [0.6.1] (2021-06-01)
### Removed
- Remove rule 218 because of a false positive

## [0.6.0] (2021-06-01)
Expand All @@ -30,7 +40,8 @@ All notable changes in **salt-lint** are documented below.
- 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.6.0...HEAD
[Unreleased]: https://github.com/warpnet/salt-lint/compare/v0.7.0...HEAD
[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
[0.5.2]: https://github.com/warpnet/salt-lint/compare/v0.5.1...v0.5.2
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ To use salt-lint with [pre-commit](https://pre-commit.com), just add the follow
# See usage instructions at http://pre-commit.com
- repo: https://github.com/warpnet/salt-lint
rev: v0.6.1
rev: v0.7.0
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" "October 2021" "salt-lint 0.6.1" "User Commands"
.TH SALT-LINT "1" "November 2021" "salt-lint 0.7.0" "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.6.1'
VERSION = '0.7.0'
DESCRIPTION = __doc__

__author__ = 'Warpnet B.V.'
Expand Down

0 comments on commit 54fead1

Please sign in to comment.