diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -85,6 +85,9 @@
 	  syntax for cleaner embedding in optparse-applicative parsers
     * hope dependent pacakges have stopped breaking the Hackage build
 
-0.6.1.0 Chris Dornan <chrisd@irisconnect.co.uk> 2014-09-21
+0.6.1.0 Chris Dornan <chrisd@irisconnect.co.uk> 2014-09-28
 	* expose ks optparse-applicative CLI parser
 	* adapt 'deploy' example to use 'ks' and 'pm' optparse-applicative parsers
+
+0.6.1.1 Chris Dornan <chrisd@irisconnect.co.uk> 2014-09-28
+    * fix deploy example for GHC 7.6.3 (use System.Setenv)
diff --git a/examples/deploy/deploy.hs b/examples/deploy/deploy.hs
--- a/examples/deploy/deploy.hs
+++ b/examples/deploy/deploy.hs
@@ -18,6 +18,7 @@
 import           Data.List
 import           System.IO
 import           System.Environment
+import qualified System.SetEnv                  as SE
 import           System.Process
 import           Control.Applicative
 import           Control.Exception
@@ -121,7 +122,7 @@
   putStrLn $ "launching password-manager shell => " ++ sh
   case "zsh" `isInfixOf` sh of
     True  -> do
-      setEnv "ZDOTDIR" "examples/deploy/zshenv"
+      SE.setEnv "ZDOTDIR" "examples/deploy/zshenv"
       callProcess sh ["-i"]
     False -> callProcess sh ["-i"]
   putStrLn "password-manager shell done"
diff --git a/keystore.cabal b/keystore.cabal
--- a/keystore.cabal
+++ b/keystore.cabal
@@ -1,5 +1,5 @@
 Name:                   keystore
-Version:                0.6.1.0
+Version:                0.6.1.1
 Synopsis:               Managing stores of secret things
 Homepage:               http://github.com/cdornan/keystore
 Author:                 Chris Dornan
diff --git a/src/Data/KeyStore/Version.hs b/src/Data/KeyStore/Version.hs
--- a/src/Data/KeyStore/Version.hs
+++ b/src/Data/KeyStore/Version.hs
@@ -6,4 +6,4 @@
     (a,b,c,d) = versionTuple
 
 versionTuple :: (Int,Int,Int,Int)
-versionTuple = (0,6,1,0)
+versionTuple = (0,6,1,1)
