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
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog for haskell-syntax


# 0.4.7.0
- Support GHC 9.12.
- Support GHC 9.14.

# 0.4.6.0
- Support GHC 9.10.

Expand Down
2 changes: 1 addition & 1 deletion ghc-source-gen.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal-version: 1.12
-- see: https://github.com/sol/hpack

name: ghc-source-gen
version: 0.4.6.0
version: 0.4.7.0
synopsis: Constructs Haskell syntax trees for the GHC API.
description: @ghc-source-gen@ is a library for generating Haskell source code.
It uses the <https://hackage.haskell.org/package/ghc ghc> library
Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://developers.google.com/open-source/licenses/bsd

name: ghc-source-gen
version: 0.4.6.0
version: 0.4.7.0
github: "google/ghc-source-gen"
license: BSD3
author: "Judah Jacobson"
Expand Down
1 change: 0 additions & 1 deletion src/GHC/SourceGen/Decl.hs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ import GHC.Hs.Type
#if MIN_VERSION_ghc(8,6,0)
, HsWildCardBndrs (..)
#endif
--, ConDeclField (..)
#if MIN_VERSION_ghc(8,8,0)
, HsArg(..)
#endif
Expand Down
1 change: 0 additions & 1 deletion src/GHC/SourceGen/Expr.hs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ import SrcLoc (unLoc, GenLocated(..))
import GHC.Parser.Annotation (EpAnn(..))
#endif

--import GHC.Parser.Annotation (EpAnn(..))
import GHC.SourceGen.Binds.Internal
import GHC.SourceGen.Binds
import GHC.SourceGen.Expr.Internal
Expand Down
2 changes: 1 addition & 1 deletion stack-9.14.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# license that can be found in the LICENSE file or at
# https://developers.google.com/open-source/licenses/bsd

snapshot: nightly-2026-01-06 # 👻 GHC 9.12.3 👻
resolver: nightly-2026-02-05
compiler: ghc-9.14.1

packages:
Expand Down
Loading