diff --git a/CHANGELOG.md b/CHANGELOG.md index e5a77cae..1c6fd2ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) -## Unreleased +## v0.9.2 - 2022-12-21 The additions to the pylint tool resulted in significant improvements to processing times. @@ -31,12 +31,15 @@ pylint-multiprocessing with maximum CPU cores | 2.5462 - Support [parallel execution](https://docs.pylint.org/run.html#parallel-execution) flag of pylint. Set the number of cores used by pylint using the `--max-procs` flag for Statick. (#460) -### Changed - ### Fixed +- Update action versions to get rid of deprecation warnings. (#458) +- Add blank line before URL in docstring for ROS discovery plugin. Fixes warning from new version of docformatter. (#459) + ### Removed +- Remove debug print statement when the threshold level is used. (#457) + ## v0.9.1 - 2022-12-12 ### Added diff --git a/statick_tool/__init__.py b/statick_tool/__init__.py index fab2db25..b417613e 100644 --- a/statick_tool/__init__.py +++ b/statick_tool/__init__.py @@ -1,3 +1,3 @@ """Making code quality easier.""" -__version__ = "0.9.1" +__version__ = "0.9.2"