diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,10 @@
 # Changelog for password
 
+## 0.1.0.1
+
+-   Small fix to make sure the doctests build with stack.
+    [#3](https://github.com/cdepillabout/password/pull/3)
+
 ## 0.1.0.0
 
 - Initial version.
diff --git a/password.cabal b/password.cabal
--- a/password.cabal
+++ b/password.cabal
@@ -1,10 +1,10 @@
 cabal-version: 1.12
 
 name:           password
-version:        0.1.0.0
+version:        0.1.0.1
 category:       Data
 synopsis:       plain-text password and hashed password datatypes and functions
-description:    A library providing types for working with plain-text and hashed passwords, generally from web applications.
+description:    A library providing types for working with plain-text and hashed passwords, generally for web applications.
 homepage:       https://github.com/cdepillabout/password/password#readme
 bug-reports:    https://github.com/cdepillabout/password/issues
 author:         Dennis Gosnell
@@ -48,6 +48,8 @@
       -threaded -rtsopts -with-rtsopts=-N
   build-depends:
       base >=4.7 && <5
+    -- bytestring is used when actually running the doctests
+    , bytestring
     , doctest
     , password
     , QuickCheck
