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
- The
todos
CLI now supports a new JSON output format. - A new
issue-reopener
GitHub action was added that uses thetodos
CLI to scan a repository checkout for TODOs referencing a GitHub issue and reopen issues that have been prematurely closed.
- The
github-issue-reopener
binary was removed in favor of theissue-reopener
action.
0.3.0 - 2023-08-19
- 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.
- Lowercase "Todo", "todo", "Fixme", "fixme", "Hack", "hack" were added as default TODO types.
0.2.0 - 2023-06-30
- 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.
- Hidden, Vendored, and Docs files are now properly excluded by default.
- The
--include-docs
option was removed.
0.1.0 - 2023-05-24
- Added a
--todo-types
flag which allows users to specify the TODO tags to search for.
- 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.
- TODOs are no longer matched when starting in the middle of a comment line.
0.0.1 - 2023-05-15
- Initial release of
todos
CLI application. - Simple support for scanning directories for TODO/FIXME/BUG/HACK/XXX comments.