Skip to content

Commit

Permalink
Update tools for GHC 9.6
Browse files Browse the repository at this point in the history
Also improve internals, e.g. organization, fd.
  • Loading branch information
tbidne committed Sep 16, 2023
1 parent 7bb0672 commit 03b01dc
Show file tree
Hide file tree
Showing 13 changed files with 419 additions and 359 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- ghc-9.6

pull_request:
branches:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to the
[Haskell Package Versioning Policy](https://pvp.haskell.org/).

## [0.9] -- 2023-09-16
### Changed
* Updated tools:
* `cabal-fmt: 0.1.6 -> 0.1.7`
* `fourmolu: 0.10.1.0 -> 0.13.1.0`
* `hlint: 3.5 -> 3.6.1`
* `implcit-hie: 0.1.2.7 -> 0.1.4.0`
* `ormolu: 0.5.3.0 -> 0.7.1.0`
* `stylish: 0.14.3.0 -> 0.14.5.0`

## [0.8] -- 2023-02-20
### Changed
* Updated tools:
Expand Down Expand Up @@ -94,6 +104,7 @@ and this project adheres to the

* First version. Released on an unsuspecting world.

[0.9]: https://github.com/tbidne/nix-hs-tools/compare/0.8...0.9
[0.8]: https://github.com/tbidne/nix-hs-tools/compare/0.7...0.8
[0.7]: https://github.com/tbidne/nix-hs-tools/compare/0.6.1...0.7
[0.6.1]: https://github.com/tbidne/nix-hs-tools/compare/0.6...0.6.1
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# nix-hs-tools

[![GitHub release (latest SemVer)](https://img.shields.io/github/v/tag/tbidne/nix-hs-tools?include_prereleases&sort=semver)](https://github.com/tbidne/nix-hs-tools/releases/)
![haskell](https://img.shields.io/static/v1?label=&message=9.4&logo=haskell&logoColor=655889&labelColor=2f353e&color=655889)
![haskell](https://img.shields.io/static/v1?label=&message=9.6&logo=haskell&logoColor=655889&labelColor=2f353e&color=655889)
[![ci](http://img.shields.io/github/actions/workflow/status/tbidne/nix-hs-tools/ci.yaml?branch=main&logoColor=85c5e7&labelColor=2f353c)](https://github.com/tbidne/nix-hs-tools/actions/workflows/ci.yaml)
[![MIT](https://img.shields.io/github/license/tbidne/nix-hs-tools?color=blue)](https://opensource.org/licenses/MIT)

Expand Down Expand Up @@ -74,7 +74,7 @@ nix run github:tbidne/nix-hs-tools/0.4.0.1#<tool> -- <args>

**Source:** https://github.com/phadej/cabal-fmt

**Version:** 0.1.6
**Version:** 0.1.7

**Description:** The `cabal-fmt` formatter for `cabal` files. By default, searches the current directory for `*.cabal` files. Otherwise the search directory can be specified with `--dir DIR`.

Expand All @@ -94,7 +94,7 @@ nix run github:tbidne/nix-hs-tools#cabal-fmt -- --dir ../foo --check

**Source:** https://github.com/fourmolu/fourmolu

**Version:** 0.10.1.0
**Version:** 0.13.1.0

**Description:** The `fourmolu` code formatter for haskell source files. Runs `fourmolu` recursively on all `hs` files in the specified directory, ignoring `dist-newstyle` and `.stack-work`. By default runs on the current directory, though it can be specified with `--dir`.

Expand All @@ -117,7 +117,7 @@ nix run github:tbidne/nix-hs-tools#fourmolu -- --no-cabal --ghc-opt -XImportQual

**Source:** https://github.com/tweag/ormolu

**Version:** 0.5.3.0
**Version:** 0.7.1.0

**Description:** The `ormolu` code formatter for haskell source files. Runs `ormolu` recursively on all `hs` files in the specified directory, ignoring `dist-newstyle` and `.stack-work`. By default runs on the current directory, though it can be specified with `--dir`.

Expand All @@ -140,7 +140,7 @@ nix run github:tbidne/nix-hs-tools#ormolu -- --no-cabal --ghc-opt -XImportQualif

**Source:** https://github.com/haskell/stylish-haskell

**Version:** 0.14.3.0
**Version:** 0.14.5.0

**Description:** The `stylish-haskell` code formatter for haskell source files. Runs `stylish-haskell` recursively on all `hs` files in the specified directory, ignoring `dist-newstyle` and `.stack-work`. By default runs on the current directory, though it can be specified with `--dir`.

Expand All @@ -159,7 +159,7 @@ nix run github:tbidne/nix-hs-tools#stylish -- --inplace

**Source:** https://github.com/ndmitchell/hlint

**Version:** 3.5
**Version:** 3.6.1

**Description:** The `hlint` linter. Runs recursively on the current directory, though this can be overridden with `--dir`. Ignores `dist-newstyle` and `stack-work`.

Expand Down Expand Up @@ -221,7 +221,7 @@ nix run github:tbidne/nix-hs-tools#haddock-cov -- --module-threshold Data.Foo 70

**Source:** https://github.com/Avi-D-coder/implicit-hie

**Version:** 0.1.2.7
**Version:** 0.1.4.0

**Description:** The `gen-hie` tool for generating an `hie` file. Redirects the output to `hie.yaml`.

Expand Down
61 changes: 49 additions & 12 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 03b01dc

Please sign in to comment.