Skip to content

Commit

Permalink
Release version 0.14.0 of Dlint
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwager committed Feb 6, 2023
1 parent 96ca49f commit 3b19294
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.0] - 2023-02-06

### Added

- Support for Flake8 6 ([#56](https://github.com/dlint-py/dlint/issues/56))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ Usage: flake8 [options] file file ...

...

Installed plugins: dlint: 0.13.0, mccabe: 0.5.3, pycodestyle: 2.2.0, pyflakes: 1.3.0
Installed plugins: dlint: 0.14.0, mccabe: 0.5.3, pycodestyle: 2.2.0, pyflakes: 1.3.0
```

Note the `dlint: 0.13.0`.
Note the `dlint: 0.14.0`.

# Using

Expand Down
2 changes: 1 addition & 1 deletion dlint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from . import util # noqa F401

__name__ = 'dlint'
__version__ = '0.13.0'
__version__ = '0.14.0'
__description__ = (
"Dlint is a tool for encouraging best coding practices "
"and helping ensure Python code is secure."
Expand Down

0 comments on commit 3b19294

Please sign in to comment.