diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+v1.1.1.5:
+* Metadata fixes and dependency update for base 4.12, containers 0.6, QuickCheck 2.12 (thanks Bryan Gardiner)
+
 v1.1.1.4:
 * Dependency update for base 4.11, HSE 1.20, HUnit 1.6, QuickCheck 2.11
 
diff --git a/pointfree.cabal b/pointfree.cabal
--- a/pointfree.cabal
+++ b/pointfree.cabal
@@ -1,7 +1,7 @@
 Cabal-Version: >= 1.8
 
 Name:     pointfree
-Version:  1.1.1.4
+Version:  1.1.1.5
 Category: Tool
 Synopsis: Tool for refactoring expressions into pointfree form
 
@@ -10,25 +10,25 @@
     plugin for lambdabot.
 
 Author:       Thomas Jäger
-Maintainer:   Ben Millwood <haskell@benmachine.co.uk>
+Maintainer:   Ben Millwood <thebenmachine+git@gmail.com>
 License:      OtherLicense
 License-file: LICENSE
 
 Extra-source-files: ChangeLog README test/Test.hs
 
 Build-type:  Simple
-Tested-with: GHC == 8.4.4
+Tested-with: GHC == 8.6.4
 
 Source-repository head
   type:     git
-  location: git://github.com/benmachine/pointfree.git
+  location: git://github.com/bmillwood/pointfree.git
 
 Library
   Exposed-modules: Pointfree
 
-  Build-depends: base >= 4.5 && < 4.12,
+  Build-depends: base >= 4.5 && < 4.13,
                  array >= 0.3 && < 0.6,
-                 containers >= 0.4 && < 0.6,
+                 containers >= 0.4 && < 0.7,
                  haskell-src-exts >= 1.20 && < 1.21,
                  transformers < 0.6
   Other-modules: Plugin.Pl.Common
@@ -42,9 +42,9 @@
 Executable pointfree
   Main-is:       Main.hs
   GHC-options:   -W
-  Build-depends: base >= 4.3 && < 4.12,
+  Build-depends: base >= 4.5 && < 4.13,
                  array >= 0.3 && < 0.6,
-                 containers >= 0.4 && < 0.6,
+                 containers >= 0.4 && < 0.7,
                  haskell-src-exts >= 1.20 && < 1.21,
                  transformers < 0.6
   Other-modules: Plugin.Pl.Common
@@ -58,15 +58,20 @@
   Type: exitcode-stdio-1.0
 
   Main-is: Test.hs
-  Other-modules:
+  Other-modules: Plugin.Pl.Common
+                 Plugin.Pl.Parser
+                 Plugin.Pl.PrettyPrinter
+                 Plugin.Pl.Optimize
+                 Plugin.Pl.Rules
+                 Plugin.Pl.Transform
 
   Build-depends:
+    base >= 4.5 && < 4.13,
     array >= 0.3 && < 0.6,
-    base < 5,
-    containers >= 0.3 && < 0.6,
+    containers >= 0.4 && < 0.7,
     haskell-src-exts >= 1.20 && < 1.21,
     HUnit >= 1.6 && < 1.7,
-    QuickCheck >= 2.11 && < 2.12,
+    QuickCheck >= 2.11 && < 2.13,
     transformers < 0.6
 
   GHC-Options:    -W
