diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -6,6 +6,3 @@
 - Whatchdog (http://www.freedesktop.org/software/systemd/man/sd_notify.html)
 - Socket activation (http://0pointer.de/blog/projects/socket-activation.html)
 - journal log
-
-Available on hackage
-http://hackage.haskell.org/package/systemd-1.0.0/docs/System-Systemd-Daemon.html
diff --git a/cabal.sandbox.config b/cabal.sandbox.config
new file mode 100644
--- /dev/null
+++ b/cabal.sandbox.config
@@ -0,0 +1,25 @@
+-- This is a Cabal package environment file.
+-- THIS FILE IS AUTO-GENERATED. DO NOT EDIT DIRECTLY.
+-- Please create a 'cabal.config' file in the same directory
+-- if you want to change the default settings for this sandbox.
+
+
+local-repo: /home/erebe/programmation/haskell/systemd/.cabal-sandbox/packages
+logs-dir: /home/erebe/programmation/haskell/systemd/.cabal-sandbox/logs
+world-file: /home/erebe/programmation/haskell/systemd/.cabal-sandbox/world
+user-install: False
+package-db: /home/erebe/programmation/haskell/systemd/.cabal-sandbox/x86_64-linux-ghc-7.8.3-packages.conf.d
+build-summary: /home/erebe/programmation/haskell/systemd/.cabal-sandbox/logs/build.log
+
+install-dirs
+  prefix: /home/erebe/programmation/haskell/systemd/.cabal-sandbox
+  bindir: $prefix/bin
+  libdir: $prefix/lib
+  libsubdir: $arch-$os-$compiler/$pkgid
+  libexecdir: $prefix/libexec
+  datadir: $prefix/share
+  datasubdir: $arch-$os-$compiler/$pkgid
+  docdir: $datadir/doc/$arch-$os-$compiler/$pkgid
+  htmldir: $docdir/html
+  haddockdir: $htmldir
+  sysconfdir: $prefix/etc
diff --git a/ressources/test.service b/ressources/test.service
new file mode 100644
--- /dev/null
+++ b/ressources/test.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=MyDaemon
+
+[Service]
+Type=simple
+TimeoutStartSec=0
+ExecStart=/home/erebe/programmation/haskell/systemd/dist/build/daemon-test/daemon-test
+WatchdogSec=60
+Restart=on-failure
+
+[Install]
+WantedBy=multi-user.target
diff --git a/systemd.cabal b/systemd.cabal
--- a/systemd.cabal
+++ b/systemd.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                systemd
-version:             0.1.0.1
+version:             1.0.0
 synopsis:            Systemd facilities (Socket activation, Notify)
 description:         A module for Systemd facilities.
 homepage:            https://github.com/erebe/systemd
@@ -22,7 +22,7 @@
 library
   exposed-modules:  System.Systemd.Daemon
   c-sources:        System/Systemd/socket_info.c
-  build-depends:       base >=4.7 && <= 4.8.1.0,
+  build-depends:       base >=4.7 && <4.8,
                        unix >= 2.5,
                        transformers >= 0.3,
                        network >=2.3,
@@ -35,6 +35,6 @@
    type:                exitcode-stdio-1.0
    main-is:             Main.hs
    default-language:    Haskell2010
-   build-depends:       base >=4.7 && <= 4.8.1.0,
+   build-depends:       base >=4.7 && <4.8,
                         systemd
    default-language:    Haskell2010
