Skip to content

Commit

Permalink
chore: Bump version to v0.9.0
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Bouter <jeffrey.bouter@warpnet.nl>
  • Loading branch information
jbouter committed Jan 13, 2023
1 parent f5199e2 commit 2e9762d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ 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.9.0] (2023-01-13)
### Added
- Rule 219 for catching missing over-indentation of nested dicts ([#284](https://github.com/warpnet/salt-lint/pull/284)).
- Add Python 3.11 support ([#290](https://github.com/warpnet/salt-lint/pull/290)).
Expand Down Expand Up @@ -50,7 +50,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.8.0...HEAD
[Unreleased]: https://github.com/warpnet/salt-lint/compare/v0.9.0...HEAD
[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
[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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020,2021 Warpnet B.V.
Copyright (c) 2020,2023 Warpnet B.V.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
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.8.0
rev: v0.9.0
hooks:
- id: salt-lint
```
Expand Down
4 changes: 2 additions & 2 deletions 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" "November 2021" "salt-lint 0.8.0" "User Commands"
.TH SALT-LINT "1" "January 2023" "salt-lint 0.9.0" "User Commands"
.SH NAME
salt-lint - A command-line utility that checks for best practices in SaltStack.
.SH SYNOPSIS
Expand Down Expand Up @@ -77,7 +77,7 @@ Warpnet B.V. <info@warpnet.nl>
.SH "REPORTING BUGS"
Report bugs to https://github.com/warpnet/salt-lint/issues.
.SH COPYRIGHT
Copyright (c) 2020, 2021 Warpnet B.V.
Copyright (c) 2020, 2023 Warpnet B.V.
.br
Copyright (c) 2013-2018 Will Thames <will@thames.id.au>
.br
Expand Down
4 changes: 2 additions & 2 deletions saltlint/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2020-2021 Warpnet B.V.
# Copyright (c) 2020-2023 Warpnet B.V.

"""A command-line utility that checks for best practices in SaltStack.
"""

NAME = 'salt-lint'
VERSION = '0.8.0'
VERSION = '0.9.0'
DESCRIPTION = __doc__

__author__ = 'Warpnet B.V.'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2013-2018 Will Thames <will@thames.id.au>
# Copyright (c) 2018 Ansible by Red Hat
# Modified work Copyright (c) 2019-2021 Warpnet B.V.
# Modified work Copyright (c) 2019-2023 Warpnet B.V.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit 2e9762d

Please sign in to comment.