lucid 2.11.1 → 2.11.20230408
raw patch · 3 files changed
+8/−3 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- lucid.cabal +3/−3
- test/Main.hs +1/−0
CHANGELOG.md view
@@ -1,5 +1,9 @@ ## Upcoming +## 2.11.20230408++* Don't expect Control.Monad to be re-exported from mtl anymore+ ## 2.11.1 * Use explicit imports for mtl, avoids the mtl-2.3 issue
lucid.cabal view
@@ -1,5 +1,5 @@ name: lucid-version: 2.11.1+version: 2.11.20230408 synopsis: Clear to write, read and edit DSL for HTML description: Clear to write, read and edit DSL for HTML.@@ -21,7 +21,7 @@ build-type: Simple cabal-version: >=1.10 extra-source-files: README.md, CHANGELOG.md-tested-with: GHC==7.10.3,GHC==8.0.2,GHC==8.2.2,GHC==8.4.4,GHC==8.6.5,GHC==8.8.4,GHC==8.10.7,GHC==9.0.1,GHC==9.2.1+tested-with: GHC==7.10.3,GHC==8.0.2,GHC==8.2.2,GHC==8.4.4,GHC==8.6.5,GHC==8.8.4,GHC==8.10.7,GHC==9.0.1,GHC==9.2.1, GHC==9.4.1 library default-language: Haskell2010@@ -33,7 +33,7 @@ Lucid.Bootstrap -- GHC boot libraries- build-depends: base >=4.8 && <4.17+ build-depends: base >=4.8 && <4.19 , bytestring >=0.10.6.0 , containers >=0.5.6.2 , transformers >=0.4.2.0
test/Main.hs view
@@ -11,6 +11,7 @@ import Lucid.Base import Lucid.Bootstrap +import Control.Monad import Control.Applicative import Control.Monad.State.Strict