conf-json 1.0 → 1.1
raw patch · 3 files changed
+14/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- changelog.md +3/−0
- conf-json.cabal +6/−3
- test/Test/test-conf.json +5/−0
changelog.md view
@@ -1,3 +1,6 @@+##### 1.1+ include test-conf.json+ ##### 1.0 initial version
conf-json.cabal view
@@ -1,13 +1,14 @@ name: conf-json-version: 1.0+version: 1.1 synopsis: read, parse json config description: read, parse json config to a Haskell type author: Imants Cekusins maintainer: Imants Cekusins-category: Configuration+category: Configuration JSON license: PublicDomain license-file: PublicDomain-extra-source-files: changelog.md+extra-source-files: changelog.md,+ test/Test/test-conf.json cabal-version: >=1.10 build-type: Simple@@ -17,6 +18,7 @@ location: https://github.com/ciez/conf-json.git + library exposed-modules: Data.Conf.Json@@ -45,6 +47,7 @@ type: exitcode-stdio-1.0 ghc-options: -fwarn-unused-imports hs-source-dirs: test, src+ default-extensions: FlexibleInstances MultiParamTypeClasses TypeSynonymInstances
+ test/Test/test-conf.json view
@@ -0,0 +1,5 @@+{+"a": 1,+"b": "val b",+"arr": [{"prop": 10},{"prop":12}] +}