Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cemsbr committed Oct 24, 2020
1 parent 950d480 commit 6de9d25
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [3.0.0] - 2020-10-23
## Changed
- Pylint's duplicate-code is not disabled anymore, since its parser has multi-line support.
- For yala devs: now, linter parsers receive both stdout and stderr. Reason: isort 5 prints results to stderr.

## Fixed
- Better support for isort 5:
- No more `--recursive` flag;
- Its output is now read from stderr instead of stdout.

## Removed
- Python 3.5 support (besides EOL, no isort-5 support)

## [2.2.1] - 2020-04-26
### Fixed
- Multiline results in pylint were not being captured, e.g. bad-whitespace and
Expand Down Expand Up @@ -47,7 +60,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Unused code to parse pyflakes and radon
- dev: dependency management via requirements file (use pipenv)

[Unreleased]: https://github.com/cemsbr/yala/compare/v2.2.1...HEAD
[Unreleased]: https://github.com/cemsbr/yala/compare/v3.0.0...HEAD
[3.0.0]: https://github.com/cemsbr/yala/compare/v2.2.1...v3.0.0
[2.2.1]: https://github.com/cemsbr/yala/compare/v2.2.0...v2.2.1
[2.2.0]: https://github.com/cemsbr/yala/compare/v2.1.0...v2.2.0
[2.1.0]: https://github.com/cemsbr/yala/compare/v2.0.0...v2.1.0
Expand Down
2 changes: 1 addition & 1 deletion yala/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import logging.config
from pathlib import Path

__version__ = '2.2.1'
__version__ = '3.0.0'

CONFIG_PATH = Path(__file__).parent / 'logging.ini'
logging.config.fileConfig(str(CONFIG_PATH), disable_existing_loggers=False)

0 comments on commit 6de9d25

Please sign in to comment.