packages feed

singletons-th 3.5 → 3.5.1

raw patch · 5 files changed

+12/−11 lines, 5 filesdep ~basedep ~template-haskelldep ~th-desugar

Dependency ranges changed: base, template-haskell, th-desugar

Files

CHANGES.md view
@@ -1,6 +1,10 @@ Changelog for the `singletons-th` project ========================================= +3.5.1 [2026.01.10]+------------------+* Require building with GHC 9.14.+ 3.5 [2024.12.11] ---------------- * Require building with GHC 9.12.
README.md view
@@ -14,7 +14,7 @@  `singletons-th` generates code that relies on bleeding-edge GHC language extensions. As such, `singletons-th` only supports the latest major version-of GHC (currently GHC 9.12). For more information,+of GHC (currently GHC 9.14). For more information, consult the `singletons` [`README`](https://github.com/goldfirere/singletons/blob/master/README.md). 
singletons-th.cabal view
@@ -1,5 +1,5 @@ name:           singletons-th-version:        3.5+version:        3.5.1 cabal-version:  1.24 synopsis:       A framework for generating singleton types homepage:       http://www.github.com/goldfirere/singletons@@ -8,7 +8,7 @@ maintainer:     Ryan Scott <ryan.gl.scott@gmail.com> bug-reports:    https://github.com/goldfirere/singletons/issues stability:      experimental-tested-with:    GHC == 9.12.1+tested-with:    GHC == 9.14.1 extra-source-files: README.md, CHANGES.md license:        BSD3 license-file:   LICENSE@@ -26,7 +26,7 @@     .     @singletons-th@ generates code that relies on bleeding-edge GHC language     extensions. As such, @singletons-th@ only supports the latest major version-    of GHC (currently GHC 9.12). For more information,+    of GHC (currently GHC 9.14). For more information,     consult the @singletons@     @<https://github.com/goldfirere/singletons/blob/master/README.md README>@.     .@@ -52,17 +52,17 @@  library   hs-source-dirs:     src-  build-depends:      base             >= 4.21 && < 4.22,+  build-depends:      base             >= 4.22 && < 4.23,                       containers       >= 0.5,                       mtl              >= 2.2.1 && < 2.4,                       ghc-boot-th,                       singletons       == 3.0.*,                       syb              >= 0.4,-                      template-haskell >= 2.23 && < 2.24,-                      th-desugar       >= 1.18 && < 1.19,+                      template-haskell >= 2.24 && < 2.25,+                      th-desugar       >= 1.19 && < 1.20,                       th-orphans       >= 0.13.11 && < 0.14,                       transformers     >= 0.5.2-  default-language:   GHC2021+  default-language:   GHC2024   other-extensions:   TemplateHaskellQuotes   exposed-modules:    Data.Singletons.TH                       Data.Singletons.TH.CustomStar
src/Data/Singletons/TH/Syntax.hs view
@@ -1,4 +1,3 @@-{-# LANGUAGE DataKinds #-} {-# LANGUAGE TypeFamilies #-}  {- Data/Singletons/TH/Syntax.hs
src/Data/Singletons/TH/Util.hs view
@@ -1,5 +1,3 @@-{-# LANGUAGE LambdaCase #-}- {- Data/Singletons/TH/Util.hs  (c) Richard Eisenberg 2013