Skip to content

Commit 307b301

Browse files
committed
Release version 1.14.1 of Dlint
1 parent cd4b9c3 commit 307b301

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.14.1] - 2023-04-10
11+
12+
### Changed
13+
14+
- Performance improvements to `get_plugin_linter_classes` ([#58](https://github.com/dlint-py/dlint/issues/58))
15+
1016
## [0.14.0] - 2023-02-06
1117

1218
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ Usage: flake8 [options] file file ...
3535

3636
...
3737

38-
Installed plugins: dlint: 0.14.0, mccabe: 0.5.3, pycodestyle: 2.2.0, pyflakes: 1.3.0
38+
Installed plugins: dlint: 0.14.1, mccabe: 0.5.3, pycodestyle: 2.2.0, pyflakes: 1.3.0
3939
```
4040

41-
Note the `dlint: 0.14.0`.
41+
Note the `dlint: 0.14.1`.
4242

4343
# Using
4444

dlint/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from . import util # noqa F401
88

99
__name__ = 'dlint'
10-
__version__ = '0.14.0'
10+
__version__ = '0.14.1'
1111
__description__ = (
1212
"Dlint is a tool for encouraging best coding practices "
1313
"and helping ensure Python code is secure."

0 commit comments

Comments
 (0)