diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,10 @@
 # Changelog for doctest-driver-gen
 
-## 0.3.0.0
+## 0.3.0.2
+
+* Update `build-depends` to allow `base-4.13.0.0`.
+
+## 0.3.0.1
 
 * Add `build-tool-depends` to make `stack test` work normally (contribution by
   qrilka).
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright Hexirp (c) 2017
+Copyright Hexirp (c) 2017-2019
 
 All rights reserved.
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -15,7 +15,11 @@
 {-# OPTIONS_GHC -F -pgmF doctest-driver-gen [-optF DOCTEST_OPTION]... #-}
 ```
 
-Make your driver file with the content.
+Make your driver file with the content. There is an example:
+
+```haskell
+{-# OPTIONS_GHC -F -pgmF doctest-driver-gen -optF src -optF app #-}
+```
 
 ## Motivation
 
diff --git a/doctest-driver-gen.cabal b/doctest-driver-gen.cabal
--- a/doctest-driver-gen.cabal
+++ b/doctest-driver-gen.cabal
@@ -1,5 +1,5 @@
 name:                doctest-driver-gen
-version:             0.3.0.1
+version:             0.3.0.2
 synopsis:            Generate driver file for doctest's cabal integration
 description:         doctest-driver-gen is a doctest's driver file generator.
                      It lets you automatically generate driver file for
@@ -9,7 +9,7 @@
 license-file:        LICENSE
 author:              Hexirp
 maintainer:          https://github.com/Hexirp/doctest-driver-gen/issues
-copyright:           2017-2018 Hexirp
+copyright:           (C) Hexirp 2017-2019
 category:            Testing
 build-type:          Simple
 extra-source-files:  README.md, CHANGELOG.md
@@ -18,7 +18,7 @@
 library
   hs-source-dirs:      src
   exposed-modules:     Test.DocTest.Gen
-  build-depends:       base >= 4.0 && < 4.13
+  build-depends:       base >= 4.0 && < 4.14
                        -- Versions of doctest available in this library
                        -- , doctest >= 0.7 && < 0.12 || >= 0.13 && < 0.17
   ghc-options:         -Wall
@@ -51,4 +51,4 @@
 source-repository this
   type:     git
   location: https://github.com/Hexirp/doctest-driver-gen
-  tag:      0.3.0.1
+  tag:      0.3.0.2
