Skip to content

Commit

Permalink
Release version 1.14.1 of Dlint
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwager committed Apr 10, 2023
1 parent cd4b9c3 commit 307b301
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.14.1] - 2023-04-10

### Changed

- Performance improvements to `get_plugin_linter_classes` ([#58](https://github.com/dlint-py/dlint/issues/58))

## [0.14.0] - 2023-02-06

### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -35,10 +35,10 @@ Usage: flake8 [options] file file ...

...

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

Note the `dlint: 0.14.0`.
Note the `dlint: 0.14.1`.

# Using

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

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

0 comments on commit 307b301

Please sign in to comment.