loc 0.1.3.12 → 0.1.3.14
raw patch · 3 files changed
+6/−4 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
- loc.cabal +2/−2
- src/Data/Loc/Area.hs +0/−2
changelog.md view
@@ -1,3 +1,7 @@+0.1.3.14 - 2022 Jan 13++ - Drop support for GHC 8.0 and 8.2+ 0.1.3.12 - 2022 Jan 13 - Support GHC 9.0 and 9.2
loc.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0 name: loc-version: 0.1.3.12+version: 0.1.3.14 synopsis: Types representing line and column positions and ranges in text files. @@ -31,7 +31,7 @@ default-language: Haskell2010 default-extensions: NoImplicitPrelude ghc-options: -Wall- build-depends: base >= 4.9 && < 4.17+ build-depends: base >= 4.11 && < 4.17 build-depends: containers >= 0.5.7.1 && < 0.7 common test
src/Data/Loc/Area.hs view
@@ -71,8 +71,6 @@ mempty = Area Map.empty - mappend = (+)- -- | '<>' = '+' instance Semigroup Area where