diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -4,11 +4,7 @@
 [cryptonite](https://hackage.haskell.org/package/cryptonite) library for cryptography.
 
 ```haskell
-import Cropty
-
-main = do
-  privateKey <- generatePrivateKey KeySize1024
-  secret <- encrypt (privateToPublic privateKey) "Hello!"
-  decoded <- decrypt privateKey secret
-  assert (secret == decoded)
+ghci> privateKey <- generatePrivateKey KeySize256
+ghci> encrypt (privateToPublic privateKey) "Hello" >>= decrypt privateKey
+"Hello"
 ```
diff --git a/cropty.cabal b/cropty.cabal
--- a/cropty.cabal
+++ b/cropty.cabal
@@ -1,7 +1,7 @@
 cabal-version:       2.4
 
 name:                cropty
-version:             0.3.0.0
+version:             0.3.0.1
 synopsis:            Encryption and decryption
 description:         Encryption and decryption.
 homepage:            https://github.com/SamuelSchlesinger/cropty
