From 18490fcaf1311eb14a654b5dac0c9890d97c6028 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 7 Jun 2019 07:14:42 +0000 Subject: [PATCH] chore(release): 0.13.1 [skip ci] ## [0.13.1](https://github.com/andreoliwa/flake8-nitpick/compare/v0.13.0...v0.13.1) (2019-06-07) ### Bug Fixes * show warning about project being renamed to "nitpick" ([fda30fd](https://github.com/andreoliwa/flake8-nitpick/commit/fda30fd)) --- CHANGELOG.md | 7 +++++++ README.md | 6 +++--- docs/conf.py | 2 +- flake8_nitpick/__init__.py | 2 +- nitpick-style.toml | 2 +- package.json | 2 +- pyproject.toml | 2 +- setup.cfg | 3 ++- 8 files changed, 17 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e7d2c66..9dfdac8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.13.1](https://github.com/andreoliwa/flake8-nitpick/compare/v0.13.0...v0.13.1) (2019-06-07) + + +### Bug Fixes + +* show warning about project being renamed to "nitpick" ([fda30fd](https://github.com/andreoliwa/flake8-nitpick/commit/fda30fd)) + # [0.13.0](https://github.com/andreoliwa/flake8-nitpick/compare/v0.12.0...v0.13.0) (2019-06-06) diff --git a/README.md b/README.md index 290f5053..1aea2379 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Simply install the package (in a virtualenv or globally, wherever) and run `flak $ pip install -U flake8-nitpick $ flake8 -You will see warnings if your project configuration is different than [the default style file](https://raw.githubusercontent.com/andreoliwa/flake8-nitpick//0.13.0/nitpick-style.toml/nitpick-style.toml). +You will see warnings if your project configuration is different than [the default style file](https://raw.githubusercontent.com/andreoliwa/flake8-nitpick//0.13.1/nitpick-style.toml/nitpick-style.toml). ## Style file @@ -44,7 +44,7 @@ You will see warnings if your project configuration is different than [the defau Change your project config on `pyproject.toml`, and configure your own style like this: [tool.nitpick] - style = "https://raw.githubusercontent.com/andreoliwa/flake8-nitpick//0.13.0/nitpick-style.toml/nitpick-style.toml" + style = "https://raw.githubusercontent.com/andreoliwa/flake8-nitpick//0.13.1/nitpick-style.toml/nitpick-style.toml" You can set `style` with any local file or URL. E.g.: you can use the raw URL of a [GitHub Gist](https://gist.github.com). @@ -62,7 +62,7 @@ If a key is defined in more than one file, the value from the last file will pre 2. Any `nitpick-style.toml` file found in the current directory (the one in which `flake8` runs from) or above. -3. If no style is found, then [the default style file from GitHub](https://raw.githubusercontent.com/andreoliwa/flake8-nitpick//0.13.0/nitpick-style.toml/nitpick-style.toml) is used. +3. If no style is found, then [the default style file from GitHub](https://raw.githubusercontent.com/andreoliwa/flake8-nitpick//0.13.1/nitpick-style.toml/nitpick-style.toml) is used. ### Style file syntax diff --git a/docs/conf.py b/docs/conf.py index 646ce4dc..c425d498 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = "W. Augusto Andreoli" # The short X.Y version -version = "0.13.0" +version = "0.13.1" # The full version, including alpha/beta/rc tags release = version diff --git a/flake8_nitpick/__init__.py b/flake8_nitpick/__init__.py index 2f04abdf..870d1d86 100644 --- a/flake8_nitpick/__init__.py +++ b/flake8_nitpick/__init__.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- """Main module.""" -__version__ = "0.13.0" +__version__ = "0.13.1" diff --git a/nitpick-style.toml b/nitpick-style.toml index e7556a95..a382b892 100644 --- a/nitpick-style.toml +++ b/nitpick-style.toml @@ -1,5 +1,5 @@ # Default style file for flake8-nitpick -# https://raw.githubusercontent.com/andreoliwa/flake8-nitpick/0.13.0/nitpick-style.toml/nitpick-style.toml +# https://raw.githubusercontent.com/andreoliwa/flake8-nitpick/0.13.1/nitpick-style.toml/nitpick-style.toml [nitpick] minimum_version = "0.10.0" diff --git a/package.json b/package.json index 15d16300..4b48f845 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flake8-nitpick", - "version": "0.13.0", + "version": "0.13.1", "repository": { "type": "git", "url": "https://github.com/andreoliwa/flake8-nitpick.git" diff --git a/pyproject.toml b/pyproject.toml index a679044f..c66c7db1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ line-length = 120 [tool.poetry] name = "flake8-nitpick" -version = "0.13.0" +version = "0.13.1" description = "Flake8 plugin to enforce the same lint configuration (flake8, isort, mypy, pylint) across multiple Python projects" authors = ["W. Augusto Andreoli "] license = "MIT" diff --git a/setup.cfg b/setup.cfg index 83b04465..d0b8df84 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.13.0 +current_version = 0.13.1 commit = False tag = False @@ -54,3 +54,4 @@ warn_unused_ignores = True [tool:pytest] addopts = -v --doctest-modules +