Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
# Changelog
All notable changes to this project will be documented in this file.

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).
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## 2.10.0 - 2025-07-29

### Added
* Support GHC-9.10 (#183, #194, #195)
* Support GHC-9.12 (#191)

### Changed
* Improve performance by caching EvidenceInfo (#188)
* Allow specifying rts options. (#181)

### Fixed
* Correct `CHANGELOG.md`. (#175)
* Fix ModuleRoot test failure. (#179)

## 2.9.0 - 2024-08-10

Expand Down
14 changes: 9 additions & 5 deletions weeder.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ name: weeder
author: Ollie Charles <ollie@ocharles.org.uk>
maintainer: Ollie Charles <ollie@ocharles.org.uk>
build-type: Simple
version: 2.9.0
copyright: Neil Mitchell 2017-2020, Oliver Charles 2020-2024
version: 2.10.0
copyright: Neil Mitchell 2017-2020, Oliver Charles 2020-2025
synopsis: Detect dead code
description: Find declarations.
homepage: https://github.com/ocharles/weeder#readme
Expand All @@ -20,12 +20,16 @@ extra-source-files:
test/Spec/*.stdout
test/Spec/*.failing

source-repository head
type: git
location: https://github.com/ocharles/weeder.git

library
build-depends:
, algebraic-graphs ^>= 0.7
, async ^>= 2.2.0
, base >= 4.17.0.0 && < 4.22.0.0
, bytestring >= 0.10.9.0 && < 0.13.0
, base >= 4.17 && < 4.22
, bytestring >= 0.10.9 && < 0.13
, containers >= 0.6.2.1 && < 0.9
, directory ^>= 1.3.3.2
, filepath ^>= 1.4.2.1 || ^>= 1.5
Expand All @@ -34,7 +38,7 @@ library
, Glob ^>= 0.9 || ^>= 0.10
, lens >= 5.1 && < 5.4
, mtl ^>= 2.2.2 || ^>= 2.3
, optparse-applicative >= 0.14.3.0 && < 0.20.0
, optparse-applicative >= 0.14.3 && < 0.20
, parallel ^>= 3.2.0.0
, regex-tdfa ^>= 1.2.0.0 || ^>= 1.3.1.0
, text ^>= 2.0.1 || ^>= 2.1
Expand Down