wordpass 1.0.0.5 → 1.0.0.6
raw patch · 3 files changed
+6/−5 lines, 3 filesdep ~random-sourcePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: random-source
API changes (from Hackage documentation)
Files
- Text/WordPass.hs +1/−1
- changelog +3/−1
- wordpass.cabal +2/−3
Text/WordPass.hs view
@@ -4,7 +4,7 @@ import Data.Ratio import System.IO (hFlush, stdout)-import System.Directory+import System.Directory(getDirectoryContents, searchable, executable, readable, getPermissions) import System.FilePath ((</>), takeDirectory) import qualified Data.Text as Text import qualified Data.Text.IO as Text
changelog view
@@ -1,6 +1,8 @@ -*-Changelog-*-+1.0.0.6 Jun 2016+ * Updated imports for GHC 8.0. -1.0.0.5 May 2016+1.0.0.5 Jun 2016 * Updated bounds for GHC 8.0. 1.0.0.4 Jul 2015
wordpass.cabal view
@@ -1,5 +1,5 @@ name: wordpass-version: 1.0.0.5+version: 1.0.0.6 synopsis: Dictionary-based password generator description: This script reads dict word lists and generates word-based passwords. Not unlike <http://xkcd.com/936/ xkcd>.@@ -36,7 +36,7 @@ text >=1.1 && <1.4, containers >=0.5 && <0.6, random-fu >=0.2 && <0.3,- random-source >=0.3 && <0.4,+ random-source >=0.3 && <0.5, vector >=0.10 && <0.12, directory >= 1.2 && <1.4, unix-compat >= 0.4 && <0.5,@@ -63,4 +63,3 @@ ghc-options: -O3 -- hs-source-dirs: default-language: Haskell2010-