paramtree 0.1.1 → 0.1.1.1
raw patch · 2 files changed
+13/−13 lines, 2 filesdep ~bytestringdep ~containersdep ~tastyPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bytestring, containers, tasty, tasty-hunit, temporary
API changes (from Hackage documentation)
Files
- ParamTree.hs +7/−7
- paramtree.cabal +6/−6
ParamTree.hs view
@@ -82,7 +82,7 @@ -- | A derived parameter set. Useful when the input expected by your function -- can't be conveniently rendered as a string label. For example: ----- @derivedParam ('enumFromTo' 0) \"My Parameter\" [1,2,5]@+-- @'derivedParam' ('enumFromTo' 0) \"My Parameter\" [1,2,5]@ -- -- The above passed @'enumFromTo' 0 1@, @'enumFromTo' 0 2@, etc. to your -- function, while labelling them as \"1 My Parameter\" and \"2 My Parameter\"@@ -110,11 +110,11 @@ -- | A completely customisable parameter set, allows specification of how to -- display values and how to derive values. Equivalencies: ----- 'simpleParam' = @customParam show id@+-- @'simpleParam' = 'customParam' 'show' 'id'@ ----- 'derivedParam' = @customParam show@+-- @'derivedParam' = 'customParam' 'show'@ ----- 'displayParam' = @\\f -> customParam f id@+-- @'displayParam' = \\f -> 'customParam' f 'id'@ customParam :: Eq r => (a -> String)@@ -129,9 +129,9 @@ -- control over which combinations appear. For example: -- -- @--- paramSets--- [ simpleParam "Bool" [True] . simpleParam "Char" "xy"--- , simpleParam "Bool" [True,False] . simpleParam "Char" "a"+-- 'paramSets'+-- [ 'simpleParam' \"Bool\" [True] . 'simpleParam' \"Char\" \"xy\"+-- , 'simpleParam' \"Bool\" [True,False] . 'simpleParam' \"Char\" \"a\" -- ] -- @ --
paramtree.cabal view
@@ -1,5 +1,5 @@ Name: paramtree-Version: 0.1.1+Version: 0.1.1.1 Homepage: https://github.com/merijn/paramtree Bug-Reports: https://github.com/merijn/paramtree/issues@@ -15,7 +15,7 @@ Cabal-Version: >= 1.10 Build-Type: Simple Tested-With: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2,- GHC == 8.2.1, GHC == 8.3.*+ GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1 Extra-Source-Files: README.md tests/*.golden @@ -41,7 +41,7 @@ TypeOperators Build-Depends: base >= 4.6 && < 5- , containers >= 0.4 && < 0.6+ , containers >= 0.4 && < 0.7 Test-Suite test Default-Language: Haskell2010@@ -54,10 +54,10 @@ Build-Depends: base , paramtree , bytestring >= 0.10 && < 0.11- , tasty >= 0.11 && < 0.13+ , tasty >= 0.11 && < 1.2 , tasty-golden >= 2.0 && < 2.4- , tasty-hunit == 0.9.*- , temporary == 1.2.*+ , tasty-hunit >= 0.9 && < 0.11+ , temporary >= 1.2 && < 1.4 Source-Repository head Type: git