Skip to content

Commit

Permalink
Update version and CHANGELOG for new release: 0.9.4. (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdenewiler authored Apr 25, 2023
1 parent ad4aeee commit 303b504
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

## v0.9.4 - 2022-04-25

### Added

- Unit tests were added to the `exceptions` module with troublesome file to check for `UnicodeDecodeError`. (#478)
Expand All @@ -19,9 +21,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- Some files cause a `UnicodeDecodeError` exception to be thrown in the `exceptions` module.
Fixed that bug and now a warning is printed if a file like that is encountered. (#478)
- Fix for Dockerfile smell DL4000. (#482)

### Changed

- Pin version of `docformatter` dependency to be compatible with `black`.
Update docstrings to match what new version of docformatter expects. (#483)
- Ran `black` and `docformatter` against all the Python test files. (#479)

```shell
Expand All @@ -30,6 +35,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
find . -name test_\*.py -exec docformatter -i --wrap-summaries 88 --wrap-descriptions 88 {} \;
```

### Removed

- Remove `codecov` package from tox configuration. (#485)

## v0.9.3 - 2022-01-30

Tools that accept a list of files have been sped up considerably.
Expand Down
2 changes: 1 addition & 1 deletion statick_tool/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Making code quality easier."""

__version__ = "0.9.3"
__version__ = "0.9.4"

0 comments on commit 303b504

Please sign in to comment.