password 2.0.0.0 → 2.0.0.1
raw patch · 4 files changed
+26/−22 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- README +0/−20
- README.md +20/−0
- password.cabal +2/−2
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for password +## 2.0.0.1++- Fixed README markdown for hackage.+ ## 2.0.0.0 - Complete overhaul of the library to include hashing and checking
− README
@@ -1,20 +0,0 @@-# password--[](http://travis-ci.org/cdepillabout/password)-[](https://hackage.haskell.org/package/password)-[](http://stackage.org/lts/package/password)-[](http://stackage.org/nightly/package/password)-[](./LICENSE)--This library provides datatypes and functions for working with passwords and-password hashes in Haskell.--Currently supports the following algorithms:--* `PBKDF2`-* `bcrypt`-* `scrypt`-* `Argon2`--Also, see the [password-instances](https://hackage.haskell.org/package/password-instances)-package for instances for common typeclasses.
+ README.md view
@@ -0,0 +1,20 @@+# password++[](http://travis-ci.org/cdepillabout/password)+[](https://hackage.haskell.org/package/password)+[](http://stackage.org/lts/package/password)+[](http://stackage.org/nightly/package/password)+[](./LICENSE)++This library provides datatypes and functions for working with passwords and+password hashes in Haskell.++Currently supports the following algorithms:++* `PBKDF2`+* `bcrypt`+* `scrypt`+* `Argon2`++Also, see the [password-instances](https://hackage.haskell.org/package/password-instances)+package for instances for common typeclasses.
password.cabal view
@@ -1,7 +1,7 @@ cabal-version: 1.12 name: password-version: 2.0.0.0+version: 2.0.0.1 category: Data synopsis: Hashing and checking of passwords description: A library providing functionality for working with plain-text and hashed passwords with different types of algorithms.@@ -14,7 +14,7 @@ license-file: LICENSE build-type: Custom extra-source-files:- README+ README.md ChangeLog.md custom-setup