Skip to content

Commit

Permalink
"Bump version: 0.2.0 → 0.3.0"
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoliwa committed Jan 3, 2019
1 parent e652604 commit 1c5d9e0
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 5 deletions.
35 changes: 33 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,48 @@
<a name="0.3.0"></a>
# [0.3.0](https://github.com/andreoliwa/flake8-nitpick/compare/v0.2.0...v0.3.0) (2019-01-03)


### feat

* Show different key/value pairs on pyproject.toml, case insensitive boolean values ([30e03eb](https://github.com/andreoliwa/flake8-nitpick/commit/30e03eb))

### fix

* KeyError when section does not exist on setup.cfg ([e652604](https://github.com/andreoliwa/flake8-nitpick/commit/e652604))



<a name="0.2.0"></a>
# [0.2.0](https://github.com/andreoliwa/flake8-nitpick/compare/v0.1.1...v0.2.0) (2018-12-23)


### Features
### build

* Upgrade packages and lint with flake8 ([22f4c62](https://github.com/andreoliwa/flake8-nitpick/commit/22f4c62))
* v0.2.0 (with conventional-changelog and bumpversion) ([bc8a8a8](https://github.com/andreoliwa/flake8-nitpick/commit/bc8a8a8))

### docs

* Add docs on how to configure pyproject.toml and style ([4a1d221](https://github.com/andreoliwa/flake8-nitpick/commit/4a1d221))

### feat

* Check missing key/value pairs in pyproject.toml ([190aa6c](https://github.com/andreoliwa/flake8-nitpick/commit/190aa6c))
* Compare setup.cfg configuration ([2bf144a](https://github.com/andreoliwa/flake8-nitpick/commit/2bf144a))
* First warning, only on the main Python file ([0b30506](https://github.com/andreoliwa/flake8-nitpick/commit/0b30506))
* Read config from pyproject.toml, cache data, run only on one Python file ([265daa5](https://github.com/andreoliwa/flake8-nitpick/commit/265daa5))
* Read config from pyproject.toml, cache data, run only on one Python ([265daa5](https://github.com/andreoliwa/flake8-nitpick/commit/265daa5))
* Read style from TOML file/URL (or climb directory tree) ([84f19d6](https://github.com/andreoliwa/flake8-nitpick/commit/84f19d6))
* Respect the files section on nitpick.toml ([9e36a02](https://github.com/andreoliwa/flake8-nitpick/commit/9e36a02))
* Use nitpick's own default style file if none is provided ([4701b86](https://github.com/andreoliwa/flake8-nitpick/commit/4701b86))

### refactor

* Rename to flake8-nitpick ([1e4f42e](https://github.com/andreoliwa/flake8-nitpick/commit/1e4f42e))

### test

* Setup logging ([5472518](https://github.com/andreoliwa/flake8-nitpick/commit/5472518))



<a name="0.1.1"></a>
Expand Down
2 changes: 1 addition & 1 deletion flake8_nitpick/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package version."""
__version__ = "0.2.0"
__version__ = "0.3.0"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flake8-nitpick",
"version": "0.2.0",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "https://github.com/andreoliwa/flake8-nitpick.git"
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.3.0
commit = False
tag = False

[bumpversion:file:flake8_nitpick/__version__.py]
search = __version__ = "{current_version}"
Expand Down

0 comments on commit 1c5d9e0

Please sign in to comment.