Skip to content

Latest commit

 

History

History
64 lines (35 loc) · 1.92 KB

CHANGELOG.md

File metadata and controls

64 lines (35 loc) · 1.92 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 (to the best of our ability).

Unreleased

Added

  • New check PD901 'df' is a bad variable name. Be kinder to your future self. (#69)
  • An --annoy flag that can be used to activate checks that set to "off" by default. The off-by-default checks should use the convention PD9xx (#69)
  • Added PD901 to README along with an example use of the --annoy flag (#69)

Changed

  • test_PD012.py had test cases that used df = <something>, which conflicted with the new PD901 check. These were changed to employees = <something> (#69)
  • Applied the black formatter to the entire pandas-vet package.

Deprecated

  • None

Removed

  • A few extraneous variables (455d1f0)

Fixed

  • None

Security

  • None

[0.2.1] - 2019-07-27

Added

  • Leandro Leites added as contributor (#66)
  • This CHANGELOG.md added (#68)

Changed

  • None

Deprecated

  • None

Removed

  • Unnecessary commented line from setup.py (#67)

Fixed

  • PD015 would fail if node.func.value did not have an id. Fixed with #65
  • version.py now correctly uses v0.2.x. This version file was not bumped with the last release. (#67)

Security

  • None