Skip to content

Commit

Permalink
Release version 0.10.1 of Dlint
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwager committed Jan 21, 2020
1 parent 4f5a9b6 commit f43c923
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
@@ -1,5 +1,5 @@
build: false
version: "0.10.0.{build}"
version: "0.10.1.{build}"
platform: "x64"

environment:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.10.1] - 2020-01-21
### Fixed
- Crash in `DUO138` when malformed regular expression ([#15](https://github.com/dlint-py/dlint/issues/15))

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -36,10 +36,10 @@ Usage: flake8 [options] file file ...
...
Installed plugins: dlint: 0.10.0, mccabe: 0.5.3, pycodestyle: 2.2.0, pyflakes: 1.3.0
Installed plugins: dlint: 0.10.1, mccabe: 0.5.3, pycodestyle: 2.2.0, pyflakes: 1.3.0
```

Note the `dlint: 0.10.0`.
Note the `dlint: 0.10.1`.

# Using

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

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

0 comments on commit f43c923

Please sign in to comment.