packages feed

cabal-test-quickcheck 0.1.2 → 0.1.3

raw patch · 4 files changed

+12/−13 lines, 4 filesdep ~Cabaldep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: Cabal, base

API changes (from Hackage documentation)

Files

LICENSE view
@@ -18,4 +18,3 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.-
cabal-test-quickcheck.cabal view
@@ -1,14 +1,15 @@ name:          cabal-test-quickcheck-version:       0.1.2-homepage:      https://github.com/zimothy/cabal-test-quickcheck+version:       0.1.3 license:       MIT license-file:  LICENSE author:        Timothy Jones-maintainer:    Timothy Jones <git@zimothy.com>-copyright:     (c) 2013 Timothy Jones+maintainer:    Timothy Jones <git@zmthy.io>+homepage:      https://github.com/zmthy/cabal-test-quickcheck+bug-reports:   https://github.com/zmthy/cabal-test-quickcheck/issues+copyright:     (c) 2013-2015 Timothy Jones category:      Testing build-type:    Simple-cabal-version: >=1.10+cabal-version: >= 1.10 synopsis:      QuickCheck for Cabal description:   Support for QuickCheck with the 'detailed' Cabal testing interface.@@ -23,9 +24,9 @@     Distribution.TestSuite.QuickCheck    build-depends:-    base       >= 4.6.0  && < 4.8,-    Cabal      >= 1.16.0 && < 1.21,-    QuickCheck >= 2.6    && < 2.8+    base       >= 4.6  && < 4.8,+    Cabal      >= 1.16 && < 1.23,+    QuickCheck >= 2.6  && < 2.8  test-suite example   type:        detailed-0.9@@ -34,12 +35,13 @@   hs-source-dirs:   test   default-language: Haskell2010 +  ghc-options: -Wall -Werror+   build-depends:     base  >= 4.6  && < 4.8,-    Cabal >= 1.20 && < 1.21,+    Cabal >= 1.19 && < 1.23,     cabal-test-quickcheck  source-repository head   type:     git   location: git://github.com/zmthy/cabal-test-quickcheck.git-
src/Distribution/TestSuite/QuickCheck.hs view
@@ -158,4 +158,3 @@ -- | The standard QuickCheck 'Args', but with the 'chatty' option turned off. stdOptions :: Args stdOptions = stdArgs { chatty = False }-
test/Example.hs view
@@ -23,4 +23,3 @@  neqNegation :: Int -> Bool neqNegation x = x /= -x-