From f43c9237a83cbd506748fcd61d5a6b9bf3de79b5 Mon Sep 17 00:00:00 2001 From: Matt Schwager Date: Tue, 21 Jan 2020 08:50:49 -0700 Subject: [PATCH] Release version 0.10.1 of Dlint --- .appveyor.yml | 2 +- CHANGELOG.md | 2 ++ README.md | 4 ++-- dlint/__init__.py | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 0f69c05..9462914 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,5 +1,5 @@ build: false -version: "0.10.0.{build}" +version: "0.10.1.{build}" platform: "x64" environment: diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fd8091..af6e31f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/README.md b/README.md index dbcee62..5fdd554 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/dlint/__init__.py b/dlint/__init__.py index 4285585..42a989a 100644 --- a/dlint/__init__.py +++ b/dlint/__init__.py @@ -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."