doctest-driver-gen 0.3.0.1 → 0.3.0.2
raw patch · 4 files changed
+15/−7 lines, 4 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−1
- LICENSE +1/−1
- README.md +5/−1
- doctest-driver-gen.cabal +4/−4
CHANGELOG.md view
@@ -1,6 +1,10 @@ # Changelog for doctest-driver-gen -## 0.3.0.0+## 0.3.0.2++* Update `build-depends` to allow `base-4.13.0.0`.++## 0.3.0.1 * Add `build-tool-depends` to make `stack test` work normally (contribution by qrilka).
LICENSE view
@@ -1,4 +1,4 @@-Copyright Hexirp (c) 2017+Copyright Hexirp (c) 2017-2019 All rights reserved.
README.md view
@@ -15,7 +15,11 @@ {-# OPTIONS_GHC -F -pgmF doctest-driver-gen [-optF DOCTEST_OPTION]... #-} ``` -Make your driver file with the content.+Make your driver file with the content. There is an example:++```haskell+{-# OPTIONS_GHC -F -pgmF doctest-driver-gen -optF src -optF app #-}+``` ## Motivation
doctest-driver-gen.cabal view
@@ -1,5 +1,5 @@ name: doctest-driver-gen-version: 0.3.0.1+version: 0.3.0.2 synopsis: Generate driver file for doctest's cabal integration description: doctest-driver-gen is a doctest's driver file generator. It lets you automatically generate driver file for@@ -9,7 +9,7 @@ license-file: LICENSE author: Hexirp maintainer: https://github.com/Hexirp/doctest-driver-gen/issues-copyright: 2017-2018 Hexirp+copyright: (C) Hexirp 2017-2019 category: Testing build-type: Simple extra-source-files: README.md, CHANGELOG.md@@ -18,7 +18,7 @@ library hs-source-dirs: src exposed-modules: Test.DocTest.Gen- build-depends: base >= 4.0 && < 4.13+ build-depends: base >= 4.0 && < 4.14 -- Versions of doctest available in this library -- , doctest >= 0.7 && < 0.12 || >= 0.13 && < 0.17 ghc-options: -Wall@@ -51,4 +51,4 @@ source-repository this type: git location: https://github.com/Hexirp/doctest-driver-gen- tag: 0.3.0.1+ tag: 0.3.0.2