Skip to content

Latest commit

 

History

History
120 lines (88 loc) · 3.38 KB

CHANGELOG.md

File metadata and controls

120 lines (88 loc) · 3.38 KB

Change Log

[0.2.5] - 2023-11-08

[0.2.4] - 2023-10-23

[0.2.3] - 2023-10-19

[0.2.2] - 2023-09-13

[0.2.1] - 2023-07-23

[0.2.0] - 2023-07-12

[0.1.7] - 2023-06-19

  • Changed
    • Pulled in the latest changes from psf/black (code diff: #27)

[0.1.6] - 2023-05-23

  • Added
    • A new option --wrap-comments to not wrap any comments (not just pragma comments)
    • A new option --keep-blank-lines-in-brackets
  • Changed
    • Improved the CLI output text colors because the current colors are confusing or not quite legible

[0.1.5] - 2023-05-09

  • Added
    • Configurability to use tabs instead of spaces (two new options: --use-tabs and --tab-width)
    • Configurability on base indentation spaces and extra indentation at different line continuation situations

[0.1.4] - 2023-05-07

  • Added
    • A new configurable option: --closing-bracket-extra-indent

[0.1.3] - 2023-05-07

  • Added

    • A new configurable option: --collapse-nested-brackets
    • A new configurable option: --wrap-pragma-comments
    • Some Github workflow actions to make sure CHANGELOG.md is updated
  • Changed

    • Changed the default quote to single quote
    • Changed the default line length to 79 characters
  • Removed

    • Some unrelated documentation and config files

[0.1.2] - 2023-05-04

[0.1.1] - 2023-05-03

[0.1.0] - 2023-04-30

  • This is the initial version that branches away from Black (commit: e712e4)
  • Changed
    • The default indentation within a function definition (when line wrap happens) is now 8 spaces. (Black's default is 4, which is not PEP8-compatible)
    • Updated README, because cercis now branches away from Black
  • Added
    • A configurable option (function-definition-extra-indent) is added instead of enforcing 8 spaces for everyone