-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
20 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## 2.7.0 - 2023-08-17 | ||
### Added | ||
* Weeder now supports type class instances. Type class instances can be marked as roots with the `root-instances` configuration option. (#126, #133, #136) | ||
* Weeder now optionally detects uses of types, excluding type family instances. This can be enabled with the `unused-types` configuration option. (#132) | ||
* Weeder's analysis now runs in parallel. This can almost halve execution time when given enough cores. Enabled by calling Weeder with `-j X` or `-N`. (#137) | ||
* `--write-default-config` flag to write and read a default configuration, if no configuration file is found. (#133) | ||
### Changed | ||
* All configuration options now have default values. This can be disabled with the `--no-default-fields` flag. (#133) | ||
* Weeder will now use distinct exit codes for certain failures. See `README.md` for more details. (#134) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ name: weeder | |
author: Ollie Charles <[email protected]> | ||
maintainer: Ollie Charles <[email protected]> | ||
build-type: Simple | ||
version: 2.6.0 | ||
version: 2.7.0 | ||
copyright: Neil Mitchell 2017-2020, Oliver Charles 2020-2023 | ||
synopsis: Detect dead code | ||
description: Find declarations. | ||
|