Skip to content

Commit

Permalink
Release 2.7.0 (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryndubei authored Aug 17, 2023
1 parent a61f581 commit a959f2e
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 25 deletions.
9 changes: 9 additions & 0 deletions .changes/2.7.0.md
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)
4 changes: 0 additions & 4 deletions .changes/unreleased/Added-20230809-210333.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Added-20230809-210449.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Added-20230809-213152.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Added-20230809-213311.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Changed-20230809-211755.yaml

This file was deleted.

4 changes: 0 additions & 4 deletions .changes/unreleased/Changed-20230809-213454.yaml

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and is generated by [Changie](https://github.com/miniscruff/changie).


## 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)

## 2.6.0 - 2023-07-07
### Added
* Weeder now supports GHC 9.6.
Expand Down
2 changes: 1 addition & 1 deletion weeder.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit a959f2e

Please sign in to comment.