Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare version 1.6.1.1 #122

Merged
merged 1 commit into from
Jan 7, 2023
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
9 changes: 7 additions & 2 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.15.202211107
# version: 0.15.20221225
#
# REGENDATA ("0.15.202211107",["github","ghc-exactprint.cabal","--ghcup-jobs"])
# REGENDATA ("0.15.20221225",["github","ghc-exactprint.cabal","--ghcup-jobs"])
#
name: Haskell-CI
on:
Expand All @@ -28,6 +28,11 @@ jobs:
strategy:
matrix:
include:
- compiler: ghc-9.4.4
compilerKind: ghc
compilerVersion: 9.4.4
setup-method: ghcup
allow-failure: false
- compiler: ghc-9.4.3
compilerKind: ghc
compilerVersion: 9.4.3
Expand Down
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2022-11-08 v1.6.1
* Add GHC 9.4.4 to CI
* Add support for exact printing HsDocTy. #121
2022-11-08 v1.6.1
* Support GHC 9.4.3
2022-09-30 v1.6.0
Expand Down
3 changes: 2 additions & 1 deletion ghc-exactprint.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ghc-exactprint
version: 1.6.1
version: 1.6.1.1
synopsis: ExactPrint for GHC
description: Using the API Annotations available from GHC 9.2.1, this
library provides a means to round trip any code that can
Expand All @@ -18,6 +18,7 @@ build-type: Simple
tested-with: GHC == 9.4.1
, GHC == 9.4.2
, GHC == 9.4.3
, GHC == 9.4.4
extra-source-files: ChangeLog
tests/examples/failing/*.hs
tests/examples/ghc710-only/*.hs
Expand Down
Loading