diff --git a/CHANGELOG.md b/CHANGELOG.md index 08547bc4..74a8f9dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [0.16.0](https://github.com/andreoliwa/nitpick/compare/v0.15.0...v0.16.0) (2019-06-19) + + +### Features + +* **pre-commit:** add nitpick hooks to use on .pre-commit-config.yaml ([92c13ae](https://github.com/andreoliwa/nitpick/commit/92c13ae)) + # [0.15.0](https://github.com/andreoliwa/nitpick/compare/v0.14.0...v0.15.0) (2019-06-17) diff --git a/README.md b/README.md index 5e035798..2a117f2f 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ To try the package, simply install it (in a virtualenv or globally, wherever) an $ pip install -U nitpick $ flake8 -You will see warnings if your project configuration is different than [the default style file](https://raw.githubusercontent.com/andreoliwa/nitpick/0.15.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/nitpick/0.16.0/nitpick-style.toml/nitpick-style.toml). ### As a pre-commit hook @@ -43,7 +43,7 @@ If you use [pre-commit](https://pre-commit.com/) on your project, add this to th repos: - repo: https://github.com/andreoliwa/nitpick - rev: v0.15.0 + rev: v0.16.0 hooks: # Run nitpick and several other flake8 plugins - id: nitpick-all @@ -60,7 +60,7 @@ To check all the other flake8 plugins that are installed with `nitpick`, see the Change your project config on `pyproject.toml`, and configure your own style like this: [tool.nitpick] - style = "https://raw.githubusercontent.com/andreoliwa/nitpick/0.15.0/nitpick-style.toml/nitpick-style.toml" + style = "https://raw.githubusercontent.com/andreoliwa/nitpick/0.16.0/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). @@ -78,7 +78,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/nitpick/0.15.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/nitpick/0.16.0/nitpick-style.toml/nitpick-style.toml) is used. ### Style file syntax diff --git a/docs/conf.py b/docs/conf.py index 8af022ab..129eec27 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ author = "W. Augusto Andreoli" # The short X.Y version -version = "0.15.0" +version = "0.16.0" # The full version, including alpha/beta/rc tags release = version diff --git a/nitpick-style.toml b/nitpick-style.toml index 1594235a..4c0afae4 100644 --- a/nitpick-style.toml +++ b/nitpick-style.toml @@ -1,5 +1,5 @@ # Default style file for nitpick -# https://raw.githubusercontent.com/andreoliwa/nitpick/0.15.0/nitpick-style.toml/nitpick-style.toml +# https://raw.githubusercontent.com/andreoliwa/nitpick/0.16.0/nitpick-style.toml/nitpick-style.toml [nitpick] minimum_version = "0.10.0" diff --git a/nitpick/__init__.py b/nitpick/__init__.py index 84bcd643..08be00e5 100644 --- a/nitpick/__init__.py +++ b/nitpick/__init__.py @@ -1,3 +1,3 @@ """Main module.""" -__version__ = "0.15.0" +__version__ = "0.16.0" diff --git a/package.json b/package.json index 74a7cc4f..74039f47 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nitpick", - "version": "0.15.0", + "version": "0.16.0", "repository": { "type": "git", "url": "https://github.com/andreoliwa/nitpick.git" diff --git a/pyproject.toml b/pyproject.toml index 5f72444d..d09119e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ line-length = 120 [tool.poetry] name = "nitpick" -version = "0.15.0" +version = "0.16.0" 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 e96deef5..6d4528ec 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.15.0 +current_version = 0.16.0 commit = False tag = False