diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,6 @@
+#####   1.1
+    include test-conf.json
+
 #####   1.0
     initial version
     
diff --git a/conf-json.cabal b/conf-json.cabal
--- a/conf-json.cabal
+++ b/conf-json.cabal
@@ -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
diff --git a/test/Test/test-conf.json b/test/Test/test-conf.json
new file mode 100644
--- /dev/null
+++ b/test/Test/test-conf.json
@@ -0,0 +1,5 @@
+{
+"a": 1,
+"b": "val b",
+"arr": [{"prop": 10},{"prop":12}] 
+}
