packages feed

wordpass 1.0.0.4 → 1.0.0.5

raw patch · 3 files changed

+9/−5 lines, 3 filesdep ~base

Dependency ranges changed: base

Files

README.md view
@@ -8,7 +8,7 @@  Script reads dict word lists and generates word-based passwords. Uses dictionaries from /usr/share/dict by default.-Inspired by [Xkcd comic](http://xkcd.com/936/).+Inspired by [xkcd comic](http://xkcd.com/936/).  Program also prints how many words have been read, and indicates estimated password space size in bits.
changelog view
@@ -1,5 +1,8 @@ -*-Changelog-*- +1.0.0.5  May 2016+	* Updated bounds for GHC 8.0.+ 1.0.0.4  Jul 2015 	* Relaxed upper bounds for vector 0.11. 
wordpass.cabal view
@@ -1,8 +1,8 @@ name:                wordpass-version:             1.0.0.4+version:             1.0.0.5 synopsis:            Dictionary-based password generator description:         This script reads dict word lists and generates word-based passwords.-                     Not unlike <http://xkcd.com/936/ Xkcd>.+                     Not unlike <http://xkcd.com/936/ xkcd>.                      .                      Program also prints how many words have been read, and indicates estimated                      password space size in bits.@@ -32,7 +32,7 @@   main-is:             WordPass.hs   other-modules:       Data.Random.RVar.Enum, Data.Random.Vector, Data.Random.Choice, Text.WordPass   other-extensions:    OverlappingInstances, MultiParamTypeClasses, FlexibleInstances-  build-depends:       base          >=4.4  && <4.9,+  build-depends:       base          >=4.4  && <4.10,                        text          >=1.1  && <1.4,                        containers    >=0.5  && <0.6,                        random-fu     >=0.2  && <0.3,@@ -50,7 +50,7 @@ library   exposed-modules:     Data.Random.RVar.Enum, Data.Random.Vector, Data.Random.Choice, Text.WordPass   other-extensions:    OverlappingInstances, MultiParamTypeClasses, FlexibleInstances-  build-depends:       base          >=4.4  && <4.9,+  build-depends:       base          >=4.4  && <4.10,                        text          >=1.1  && <1.4,                        containers    >=0.5  && <0.6,                        random-fu     >=0.2  && <0.3,@@ -63,3 +63,4 @@   ghc-options:         -O3    -- hs-source-dirs:         default-language:    Haskell2010+