Skip to content

Latest commit

 

History

History
78 lines (61 loc) · 2.48 KB

CHANGELOG.md

File metadata and controls

78 lines (61 loc) · 2.48 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

3.1.0 - 2021-11-15

Added

  • Black Friday is near, so we added Black support! :) Thank you, @viniarck.

Changed

  • Using GitHub actions instead of travis-ci.

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 bad-continuation.
  • Updated pyflakes output parser: now there's a column number.

Changed

  • Pipfile has Python 3.8 now that it is available in Ubuntu LTS 20.04. However, CI still tests under 3.5, 3.6, and 3.7, too.

2.2.0 - 2019-11-28

Added

  • Pylint as default (required) linter (as in v1)

2.1.0 - 2019-10-12

Added

  • Windows support

2.0.0 - 2019-10-10

Added

  • Flake8 support
  • Pyflakes support
  • Option to choose linters to install, or "all" (check README)

Changed

  • Install only isort and pycodestyle by default. For the old behaviour: pip install yala[all]

1.8.0 - 2019-10-06

Added

  • Radon is back - thanks CartoonFan #136
  • Fixed linter issues

1.7.0 - 2018-08-25

Added

  • Support to pycodestyle >= 2.4.0

Removed

  • Radon (to support pycodestyle >= 2.4.0)
  • Unused code to parse pyflakes and radon
  • dev: dependency management via requirements file (use pipenv)