tasty-hedgehog 0.1.0.1 → 0.1.0.2
raw patch · 5 files changed
+49/−45 lines, 5 filesdep ~basedep ~tastyPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, tasty
API changes (from Hackage documentation)
Files
- ChangeLog.md +0/−9
- LICENCE +31/−0
- LICENSE +0/−31
- changelog.md +13/−0
- tasty-hedgehog.cabal +5/−5
− ChangeLog.md
@@ -1,9 +0,0 @@-# Revision history for tasty-hedgehog--## 0.1.0.1 -- 2017-08-24--* Exposed the various tasty options.--## 0.1.0.0 -- 2017-08-24--* First version. Released on an unsuspecting world.
+ LICENCE view
@@ -0,0 +1,31 @@+Copyright (c) 2017, Commonwealth Scientific and Industrial Research Organisation+(CSIRO) ABN 41 687 119 230.++All rights reserved.++Redistribution and use in source and binary forms, with or without+modification, are permitted provided that the following conditions are met:++ * Redistributions of source code must retain the above copyright+ notice, this list of conditions and the following disclaimer.++ * Redistributions in binary form must reproduce the above+ copyright notice, this list of conditions and the following+ disclaimer in the documentation and/or other materials provided+ with the distribution.++ * Neither the name of QFPL nor the names of other+ contributors may be used to endorse or promote products derived+ from this software without specific prior written permission.++THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
− LICENSE
@@ -1,31 +0,0 @@-Copyright (c) 2017, Commonwealth Scientific and Industrial Research Organisation-(CSIRO) ABN 41 687 119 230.--All rights reserved.--Redistribution and use in source and binary forms, with or without-modification, are permitted provided that the following conditions are met:-- * Redistributions of source code must retain the above copyright- notice, this list of conditions and the following disclaimer.-- * Redistributions in binary form must reproduce the above- copyright notice, this list of conditions and the following- disclaimer in the documentation and/or other materials provided- with the distribution.-- * Neither the name of QFPL nor the names of other- contributors may be used to endorse or promote products derived- from this software without specific prior written permission.--THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ changelog.md view
@@ -0,0 +1,13 @@+# Revision history for tasty-hedgehog++## 0.1.0.2 -- 2018-01-22++* Ease bounds to allow for `tasty` 1.0.++## 0.1.0.1 -- 2018-08-24++* Exposed the various tasty options.++## 0.1.0.0 -- 2017-08-24++* First version. Released on an unsuspecting world.
tasty-hedgehog.cabal view
@@ -1,7 +1,7 @@ name: tasty-hedgehog-version: 0.1.0.1+version: 0.1.0.2 license: BSD3-license-file: LICENSE+license-file: LICENCE author: Dave Laing maintainer: dave.laing.80@gmail.com copyright: Copyright (c) 2017, Commonwealth Scientific and Industrial Research Organisation (CSIRO) ABN 41 687 119 230.@@ -11,7 +11,7 @@ homepage: https://github.com/qfpl/tasty-hedghog bug-reports: https://github.com/qfpl/tasty-hedgehog/issues build-type: Simple-extra-source-files: ChangeLog.md+extra-source-files: changelog.md cabal-version: >=1.10 source-repository head@@ -22,7 +22,7 @@ exposed-modules: Test.Tasty.Hedgehog build-depends: base >= 4.8 && <4.11 , tagged >= 0.8 && < 0.9- , tasty >= 0.11 && < 0.12+ , tasty >= 0.11 && < 1.1 , hedgehog >= 0.5 && < 0.6 hs-source-dirs: src ghc-options: -Wall@@ -33,7 +33,7 @@ main-is: Main.hs hs-source-dirs: test build-depends: base >= 4.8 && <4.11- , tasty >= 0.11 && < 0.12+ , tasty >= 0.11 && < 1.1 , tasty-expected-failure >= 0.11 && < 0.12 , hedgehog >= 0.5 && < 0.6 , tasty-hedgehog