ascii-th 1.0.0.11 → 1.0.0.12
raw patch · 3 files changed
+44/−11 lines, 3 filesdep ~ascii-supersetdep ~basedep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: ascii-superset, base, bytestring, template-haskell
API changes (from Hackage documentation)
Files
- ascii-th.cabal +11/−11
- changelog.md +31/−0
- readme.md +2/−0
ascii-th.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0 name: ascii-th-version: 1.0.0.11+version: 1.0.0.12 synopsis: Template Haskell support for ASCII category: Data, Text @@ -15,14 +15,14 @@ author: Chris Martin maintainer: Chris Martin, Julie Moronuki -homepage: https://github.com/typeclasses/ascii-bug-Reports: https://github.com/typeclasses/ascii/issues+homepage: https://github.com/typeclasses/ascii-th+bug-reports: https://github.com/typeclasses/ascii-th/issues -build-type: Simple+extra-doc-files: *.md source-repository head type: git- location: git://github.com/typeclasses/ascii.git+ location: git://github.com/typeclasses/ascii-th.git common base default-language: Haskell2010@@ -36,15 +36,15 @@ build-depends: ascii-char ^>= 1.0- , ascii-superset ^>= 1.0- , base >= 4.13 && < 4.17+ , ascii-superset ^>= 1.0.1+ , base ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 library import: base hs-source-dirs: library build-depends:- template-haskell >= 2.15 && < 2.19+ template-haskell ^>= 2.16 || ^>= 2.17 || ^>= 2.18 || ^>= 2.19 exposed-modules: ASCII.TemplateHaskell@@ -62,6 +62,6 @@ build-depends: ascii-th- , bytestring ^>= 0.10 || ^>= 0.11- , hedgehog ^>= 1.0.1 || ^>= 1.1 || ^>= 1.2- , text ^>= 1.2.4+ , bytestring ^>= 0.10.12 || ^>= 0.11+ , hedgehog ^>= 1.0.5 || ^>= 1.1 || ^>= 1.2+ , text ^>= 1.2.4.1 || ^>= 2.0
+ changelog.md view
@@ -0,0 +1,31 @@+### 1.0.0.12 (2022-12-30)++Metadata changes only++### 1.0.0.11 (2022-10-04)++Drop support for `base` 4.11 (GHC 8.4) and `base` 4.12 (GHC 8.6)++### 1.0.0.10 (2022-03-22)++Switch test-suite over to `hedgehog`++### 1.0.0.8 (2022-01-09)++Support GHC 9.2++### 1.0.0.6 (2021-09-26)++Add a test suite++### 1.0.0.4 (2021-02-10)++Support GHC 9.0++### 1.0.0.2 (2020-05-18)++Support GHC 8.10++### 1.0.0.0 (2020-05-05)++Initial release
+ readme.md view
@@ -0,0 +1,2 @@+This package defines Template Haskell support for ASCII, including quasi-quoters+for expressing ASCII strings.