diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.3.2 #
+
+* Bump `indentation-trifecta` dependency to `0.0.2` (supports `trifecta-1.7`)
+* Bump `base` bounds to support GHC 8.2.1
+
 # 0.3.1 #
 
 * Bump `indentation-trifecta` dependency to `0.0.1` (supports `trifecta-1.6`)
diff --git a/indentation.cabal b/indentation.cabal
--- a/indentation.cabal
+++ b/indentation.cabal
@@ -1,5 +1,5 @@
 name:                indentation
-version:             0.3.1
+version:             0.3.2
 synopsis:            Indentation sensitive parsing combinators for Parsec and Trifecta
 description:         Indentation sensitive parsing combinators for Parsec and Trifecta.
                      .                     
@@ -31,7 +31,7 @@
 
 homepage:            https://bitbucket.org/adamsmd/indentation
 bug-reports:         https://bitbucket.org/adamsmd/indentation/issues
-tested-with:         GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
+tested-with:         GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.2.1
 
 source-repository head
   type:                git
@@ -40,21 +40,21 @@
 library
   hs-source-dirs:      src
   exposed-modules:     Text.Parser.Indentation.Implementation
-  build-depends:       base >=4.6 && <4.10,
+  build-depends:       base >=4.6 && <4.12,
                        mtl >=2.1,
-                       indentation-core == 0.0
+                       indentation-core == 0.0.0.1
 
   if flag(Parsec)
     build-depends:     parsec >=3.1.5,
-                       indentation-parsec == 0.0
+                       indentation-parsec == 0.0.0.1
     exposed-modules:   Text.Parsec.Indentation
                      , Text.Parsec.Indentation.Char
                      , Text.Parsec.Indentation.Token
 
   if flag(Trifecta)
-    build-depends:     trifecta >=1.4 && <1.7,
+    build-depends:     trifecta >=1.4 && <1.8,
                        parsers >=0.10 && <0.13,
-                       indentation-trifecta == 0.0.1
+                       indentation-trifecta == 0.0.2
     exposed-modules:   Text.Trifecta.Indentation
 
   default-language:    Haskell2010
