Skip to content

Latest commit

 

History

History
88 lines (58 loc) · 2.85 KB

CHANGELOG.md

File metadata and controls

88 lines (58 loc) · 2.85 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.

0.4.0-rc.1 - 2023-08-23

Added in 0.4.0-rc.1

  • The todos CLI now supports a new JSON output format.
  • A new issue-reopener GitHub action was added that uses the todos CLI to scan a repository checkout for TODOs referencing a GitHub issue and reopen issues that have been prematurely closed.

Removed in 0.4.0-rc.1

  • The github-issue-reopener binary was removed in favor of the issue-reopener action.

0.3.0 - 2023-08-19

Added in 0.3.0

  • Support for Rust was added.
  • Support for Unix assembly language was added.
  • Support for Lua was added.
  • A new github-issue-reopener binary was added. This tool will scan a directory for TODOs referencing a GitHub issue and reopen issues that have been prematurely closed.

Changed in 0.3.0

  • Lowercase "Todo", "todo", "Fixme", "fixme", "Hack", "hack" were added as default TODO types.

0.2.0 - 2023-06-30

Changed in 0.2.0

  • Leading whitespaces is now trimmed from TODOS in multi-line comments.
  • The --include-hidden option was replaced with the --exclude-hidden option and including hidden files was made the default.
  • An --include-vcs option was added and the VCS directories .git, .hg, and .svn are skipped by default.

Fixed in 0.2.0

  • Hidden, Vendored, and Docs files are now properly excluded by default.

Removed in 0.2.0

  • The --include-docs option was removed.

0.1.0 - 2023-05-24

Added in 0.1.0

  • Added a --todo-types flag which allows users to specify the TODO tags to search for.

Changed in 0.1.0

  • TODOs matched in multi-line comments no longer print the entire comment. Only the line containing the TODO is printed. Line numbers printed also correspond to the line where the TODO occurs rather than the starting line of the comment.
  • Filenames and line numbers are now colored in the terminal if it supports it.
  • Hidden files are now supported properly on Windows.

Fixed in 0.1.0

  • TODOs are no longer matched when starting in the middle of a comment line.

0.0.1 - 2023-05-15

Added in 0.0.1

  • Initial release of todos CLI application.
  • Simple support for scanning directories for TODO/FIXME/BUG/HACK/XXX comments.