Skip to content

Commit f43c923

Browse files
committed
Release version 0.10.1 of Dlint
1 parent 4f5a9b6 commit f43c923

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
build: false
2-
version: "0.10.0.{build}"
2+
version: "0.10.1.{build}"
33
platform: "x64"
44

55
environment:

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.10.1] - 2020-01-21
810
### Fixed
911
- Crash in `DUO138` when malformed regular expression ([#15](https://github.com/dlint-py/dlint/issues/15))
1012

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ Usage: flake8 [options] file file ...
3636
3737
...
3838
39-
Installed plugins: dlint: 0.10.0, mccabe: 0.5.3, pycodestyle: 2.2.0, pyflakes: 1.3.0
39+
Installed plugins: dlint: 0.10.1, mccabe: 0.5.3, pycodestyle: 2.2.0, pyflakes: 1.3.0
4040
```
4141

42-
Note the `dlint: 0.10.0`.
42+
Note the `dlint: 0.10.1`.
4343

4444
# Using
4545

dlint/__init__.py

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

1616
__name__ = 'dlint'
17-
__version__ = '0.10.0'
17+
__version__ = '0.10.1'
1818
__description__ = (
1919
"Dlint is a tool for encouraging best coding practices "
2020
"and helping ensure Python code is secure."

0 commit comments

Comments
 (0)