Skip to content

Commit d3fe096

Browse files
committed
🔖 v0.2.0
1 parent b2c4f76 commit d3fe096

File tree

3 files changed

+36
-13
lines changed

3 files changed

+36
-13
lines changed

.vscode/settings.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
".pylintrc"
1616
],
1717
"files.eol": "\n",
18-
"python.unitTest.pyTestArgs": [
18+
"python.testing.pytestArgs": [
1919
"pylintfileheadertest"
2020
],
21-
"python.unitTest.unittestEnabled": false,
22-
"python.unitTest.nosetestsEnabled": false,
23-
"python.unitTest.pyTestEnabled": true
21+
"python.testing.unittestEnabled": false,
22+
"python.testing.nosetestsEnabled": false,
23+
"python.testing.pytestEnabled": true
2424
}

CHANGELOG.md

Lines changed: 31 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,37 @@
22
All notable changes to the "pylintfileheader" pypi package will be documented in this file.
33
This project follows [semantic versioning](https://semver.org/).
44

5-
## 2019-10-30 - v0.1.0
6-
* **DEPRECATED** python 2.7 support: The next major release will drop support for python 2.7
7-
* **Added** [CI jobs](https://travis-ci.org/HaaLeo/pylint-file-header) to test against all supported python versions
5+
## Unreleased
86

9-
## 2018-11-28 - v0.0.2
10-
* **Added** [code coverage](https://codecov.io/gh/HaaLeo/pylint-file-header)
11-
* **Fixed** example usage in the readme
7+
## 2020-12-28 - [v0.2.0](https://github.com/HaaLeo/pylint-file-header/tree/v0.2.0)
8+
9+
### Added
10+
* option `file-header-ignore-empty-files` to ignore empty files ([#1](https://github.com/HaaLeo/pylint-file-header/issues/1)) contributed by Sergey Vilgelm ([@SVilgelm](https://github.com/SVilgelm))
11+
12+
[All Changes](https://github.com/HaaLeo/pylint-file-header/compare/v0.1.0...v0.2.0)
13+
14+
## 2019-10-30 - [v0.1.0](https://github.com/HaaLeo/pylint-file-header/tree/v0.1.0)
15+
16+
### DEPRECATED
17+
* python 2.7 support: The next major release will drop support for python 2.7
18+
19+
### Added
20+
* [CI jobs](https://travis-ci.org/HaaLeo/pylint-file-header) to test against all supported python versions
21+
22+
[All Changes](https://github.com/HaaLeo/pylint-file-header/compare/v0.0.2...v0.1.0)
23+
24+
## 2018-11-28 - [v0.0.2](https://github.com/HaaLeo/pylint-file-header/tree/v0.0.2)
25+
26+
### Added
27+
* [code coverage](https://codecov.io/gh/HaaLeo/pylint-file-header)
28+
29+
### Fixed
30+
* example usage in the readme
31+
32+
[All Changes](https://github.com/HaaLeo/pylint-file-header/compare/v0.0.1...v0.0.2)
33+
34+
## 2018-11-25 - [v0.0.1](https://github.com/HaaLeo/pylint-file-header/tree/v0.0.1)
1235

13-
## 2018-11-25 - v0.0.1
1436
* **Initial Release**
15-
* **Added** a feature that enables pylint to lint for a consistent file header
37+
### Added
38+
* a feature that enables pylint to lint for a consistent file header

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
setup(
1414
# PEP8: Packages should also have short, all-lowercase names, the use of underscores is discouraged
1515
name='pylintfileheader',
16-
version='0.1.0',
16+
version='0.2.0',
1717
packages=find_packages(exclude=['*test']),
1818
description='Enables pylint to force a consistent file header.',
1919
long_description=LONG_DESCRIPTION,

0 commit comments

Comments
 (0)