smallcheck-series 0.6.1 → 0.6.1.1
raw patch · 5 files changed
+14/−9 lines, 5 filesdep ~basenew-uploaderPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- Test/SmallCheck/Series/ByteString.hs +1/−1
- Test/SmallCheck/Series/ByteString/Lazy.hs +1/−1
- Test/SmallCheck/Series/Utils.hs +1/−1
- smallcheck-series.cabal +6/−6
CHANGELOG.md view
@@ -4,6 +4,11 @@ CHANGELOG](http://keepachangelog.com/). This project adheres to [Semantic Versioning](http://semver.org/). +## [0.6.1.1] - Tuesday, 15 of September 2020+### Fixed+- Allow `base` versions up to `4.15`.+- Run continuous integration with more compiler versions, up to `GHC-8.10.2`+ ## [0.6.1] - 2019-02-17 ### Fixed - `base` version bump to `4.13`.
Test/SmallCheck/Series/ByteString.hs view
@@ -30,7 +30,7 @@ import qualified Test.SmallCheck.Series.ByteString.Lazy as L.Series -- | A 'Data.ByteString.ByteString' 'Series' that grows by replicating--- the @97@ 'Word8', which encodes the 'a' 'Char' in @ASCII@.+-- the @97@ 'Word8', which encodes the @\'a\'@ 'Char' in @ASCII@. -- -- >>> list 4 replicateA -- ["","a","aa","aaa","aaaa"]
Test/SmallCheck/Series/ByteString/Lazy.hs view
@@ -26,7 +26,7 @@ import Test.SmallCheck.Series -- | A 'Data.ByteString.Lazy.ByteString' 'Series' that grows by replicating--- the @97@ 'Word8', which encodes the 'a' 'Char' in @ASCII@.+-- the @97@ 'Word8', which encodes the @\'a\'@ 'Char' in @ASCII@. -- -- >>> list 4 replicateA -- ["","a","aa","aaa","aaaa"]
Test/SmallCheck/Series/Utils.hs view
@@ -1,5 +1,5 @@ {-|-Extra utility functions to manipulate 'Series'.+Extra utility functions to manipulate 'Test.SmallCheck.Series'. -} module Test.SmallCheck.Series.Utils (
smallcheck-series.cabal view
@@ -1,5 +1,5 @@ name: smallcheck-series-version: 0.6.1+version: 0.6.1.1 synopsis: Extra SmallCheck series and utilities description: Orphan@@ -11,13 +11,13 @@ bug-reports: https://github.com/jdnavarro/smallcheck-series/issues license: BSD3 license-file: LICENSE-author: Danny Navarro-maintainer: j@dannynavarro.net+author: Danny Navarro <j@dannynavarro.net>+maintainer: Jan Path <jan@jpath.de>, Ignat Insarov <kindaro@gmail.com> category: Testing build-type: Simple extra-source-files: README.md CHANGELOG.md AUTHORS.md cabal-version: >=1.10-tested-with: GHC == 8.0.1, GHC == 8.4.4+tested-with: GHC == 8.10.2, GHC == 8.8.2, GHC == 8.6.5, GHC == 8.4.4, GHC == 8.2.2, GHC == 8.0.2 source-repository head type: git@@ -32,7 +32,7 @@ Test.SmallCheck.Series.Text Test.SmallCheck.Series.Text.Lazy Test.SmallCheck.Series.Utils- build-depends: base >=4.6 && <4.13,+ build-depends: base >=4.6 && <4.15, bytestring >=0.10.0.2, containers >=0.5.0.0, text >=0.11.3,@@ -46,6 +46,6 @@ hs-source-dirs: tests main-is: doctests.hs ghc-options: -Wall -threaded- build-depends: base >=4.6 && <4.12,+ build-depends: base >=4.6 && <4.15, Glob >=0.7.5, doctest >=0.9.10