keystore 0.6.1.0 → 0.6.1.1
raw patch · 4 files changed
+8/−4 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- changelog +4/−1
- examples/deploy/deploy.hs +2/−1
- keystore.cabal +1/−1
- src/Data/KeyStore/Version.hs +1/−1
changelog view
@@ -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)
examples/deploy/deploy.hs view
@@ -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"
keystore.cabal view
@@ -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
src/Data/KeyStore/Version.hs view
@@ -6,4 +6,4 @@ (a,b,c,d) = versionTuple versionTuple :: (Int,Int,Int,Int)-versionTuple = (0,6,1,0)+versionTuple = (0,6,1,1)