loc-test 0.1.3.10 → 0.1.3.12
raw patch · 3 files changed
+23/−58 lines, 3 filesdep ~basedep ~containersdep ~hedgehogPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, containers, hedgehog
API changes (from Hackage documentation)
Files
- changelog.md +0/−32
- loc-test.cabal +9/−10
- src/Test/Loc/Hedgehog/Gen.hs +14/−16
− changelog.md
@@ -1,32 +0,0 @@-0.1.3.10 - 2022 Jan 13-- - Support GHC 9.0 and 9.2- - Tighten dependency version bounds--0.1.3.8 - 2020 May 20-- - Support GHC 8.10--The change log was not maintained before this point.--0.1.3.6 - 2020 Mar 15-- - Support GHC 8.8--0.1.3.4 - 2018 Nov 22--0.1.3.3 - 2018 Aug 23--0.1.3.2 - 2017 Dec 3--0.1.3.1 - 2017 Aug 20--0.1.3.0 - 2017 Jul 22--0.1.2.1 - 2017 May 16--0.1.2.0 - 2017 May 7--0.1.1.0 - 2017 May 7--0.1.0.0 - 2017 May 7
loc-test.cabal view
@@ -1,7 +1,7 @@ cabal-version: 3.0 name: loc-test-version: 0.1.3.10+version: 0.1.3.12 synopsis: Test-related utilities related to the /loc/ package. @@ -11,26 +11,25 @@ category: Testing -homepage: https://github.com/chris-martin/loc+homepage: https://github.com/typeclasses/loc -author: Chris Martin <ch.martin@gmail.com>-maintainer: Chris Martin <ch.martin@gmail.com>+author: Chris Martin+maintainer: Chris Martin, Julie Moronuki +copyright: 2017 Mission Valley Software LLC license: Apache-2.0 license-file: license.txt build-type: Simple -extra-source-files: changelog.md- library default-language: Haskell2010 hs-source-dirs: src- default-extensions: NoImplicitPrelude+ default-extensions: NoImplicitPrelude ScopedTypeVariables ghc-options: -Wall exposed-modules: Test.Loc.Hedgehog.Gen build-depends:- base >= 4.9 && < 4.17- , containers >= 0.5.7.1 && < 0.7- , hedgehog ^>= 1.0+ base >= 4.14 && < 4.17+ , containers >= 0.6.5.1 && < 0.7+ , hedgehog ^>= 1.0.2 || ^>= 1.1 || ^>= 1.2 , loc ^>= 0.1.3
src/Test/Loc/Hedgehog/Gen.hs view
@@ -1,5 +1,3 @@-{-# LANGUAGE ScopedTypeVariables #-}- {- | Hedgehog generators for types defined in the /loc/ package.@@ -7,25 +5,25 @@ -} module Test.Loc.Hedgehog.Gen (- -- * Line- line, line', defMaxLine-- -- * Column- , column, column', defMaxColumn+ -- * Line+ line, line', defMaxLine, - -- * Loc- , loc, loc'+ -- * Column+ column, column', defMaxColumn, - -- * Span- , span, span'+ -- * Loc+ loc, loc', - -- * Area- , area, area'+ -- * Span+ span, span', - -- * Generator bounds- , Bounds, boundsSize+ -- * Area+ area, area', - ) where+ -- * Generator bounds+ Bounds, boundsSize,+ )+ where import Data.Loc (ToNat (..)) import Data.Loc.Internal.Prelude