packages feed

smallcheck-series 0.5.1 → 0.6

raw patch · 2 files changed

+16/−3 lines, 2 filesdep ~base

Dependency ranges changed: base

Files

CHANGELOG.md view
@@ -4,6 +4,16 @@ CHANGELOG](http://keepachangelog.com/). This project adheres to [Semantic Versioning](http://semver.org/). +## [0.6] - 2016-07-03+### Added+- Support for `base-4.9` which comes bundled with `GHC-8.0.1`.++### Removed+- Support for `GHC-7.8.4`. For some reason with this version the `transformers`+  dependency is pinned to 0.3.0.0. I don't have time to fix this issue but if+  you know how to fix it PRs are welcome.+- Support for stack.+ ## [0.5.1] - 2015-09-01 ### Fixed - Intances of `Word` and `Int` now stop generating at its maxium bound.@@ -42,6 +52,8 @@ - Initial set of utilities for creating `ByteString` and `Text` `Series`. - `Serial` `ByteString` and `Text` instances. +[0.6]: https://github.com/jdnavarro/smallcheck-series/compare/v0.5.1...v0.6+[0.5.1]: https://github.com/jdnavarro/smallcheck-series/compare/v0.5...v0.5.1 [0.5]: https://github.com/jdnavarro/smallcheck-series/compare/v0.4...v0.5 [0.4]: https://github.com/jdnavarro/smallcheck-series/compare/v0.3...v0.4 [0.3]: https://github.com/jdnavarro/smallcheck-series/compare/v0.2...v0.3
smallcheck-series.cabal view
@@ -1,5 +1,5 @@ name:                smallcheck-series-version:             0.5.1+version:             0.6 synopsis:            Extra SmallCheck series and utilities description:   Orphan@@ -17,6 +17,7 @@ build-type:          Simple extra-source-files:  README.md CHANGELOG.md AUTHORS.md cabal-version:       >=1.10+tested-with:         GHC == 8.0.1  source-repository head   type: git@@ -31,7 +32,7 @@                        Test.SmallCheck.Series.Text                        Test.SmallCheck.Series.Text.Lazy                        Test.SmallCheck.Series.Utils-  build-depends:       base >=4.6 && <4.9,+  build-depends:       base >=4.6 && <4.10,                        bytestring >=0.10.0.2,                        containers >=0.5.0.0,                        text >=0.11.3,@@ -45,6 +46,6 @@   hs-source-dirs:      tests   main-is:             doctests.hs   ghc-options:         -Wall -threaded-  build-depends:       base >=4.6 && <4.9,+  build-depends:       base >=4.6 && <4.10,                        Glob >=0.7.5,                        doctest >=0.9.10