Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
regexident committed Dec 5, 2023
1 parent 2c39f6e commit 093d82d
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,38 @@ Please make sure to add your changes to the appropriate categories:

### Added

- n/a
- Added dedicated top-level `orphans` command (replacing the now removed `--orphans` CLI flag) for detecting orphaned Rust source files within projects.

### Changed

- n/a
- Renamed `generate tree` command to `structure`, promoting it to a top-level command.
- Renamed `generate graph` command to `dependencies`, promoting it to a top-level command.
- Made `structure` command include types, traits, fns and tests by default.
Use `--no-types`, `--no-traits`, `--no-fns`, `--no-tests`, to opt-out.
- Made `dependencies` command include uses, externs, types, traits, fns and tests by default.
Use `--no-modules`, `--no-uses`, `--no-externs`, `--no-types`, `--no-traits`, `--no-fns`, `--no-tests`, to opt-out.

### Deprecated

- n/a

### Removed

- n/a
- Removed `generate` top-level CLI command, promoting its sub-commands to top-level commands.
- Removed the `--orphans` CLI flag from `structure` command (née `generate tree`).
- Removed CLI selection options for `structure` command:
- Removed CLI option `--types`
- Removed CLI option `--traits`
- Removed CLI option `--fns`
- Removed CLI option `--tests`
- Removed CLI selection options for `dependencies` command:
- Removed CLI option `--modules`
- Removed CLI option `--uses`
- Removed CLI option `--externs`
- Removed CLI option `--types`
- Removed CLI option `--traits`
- Removed CLI option `--fns`
- Removed CLI option `--tests`

### Fixed

Expand Down

0 comments on commit 093d82d

Please sign in to comment.