diff --git a/CHANGELOG.txt b/CHANGELOG.txt
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,9 @@
+0.9.3, 2018-09-22:
+	Updated dependencies to allow containers-0.7 (GHC 8.6). Thanks to
+	chessai for the merge request.
+
+	Updated tests to compile with GHC 8.6.
+
 0.9.2, 2018-02-26:
 	Updated dependencies to allow transformers-compat-0.6.
 
diff --git a/Glob.cabal b/Glob.cabal
--- a/Glob.cabal
+++ b/Glob.cabal
@@ -1,7 +1,7 @@
 Cabal-Version: >= 1.9.2
 
 Name:        Glob
-Version:     0.9.2
+Version:     0.9.3
 Homepage:    http://iki.fi/matti.niemenmaa/glob/
 Synopsis:    Globbing library
 Category:    System
@@ -26,7 +26,7 @@
 
 Library
    Build-Depends: base         >= 4 && < 5
-                , containers   <  0.6
+                , containers   <  0.7
                 , directory    <  1.4
                 , dlist        >= 0.4 && < 0.9
                 , filepath     >= 1.1 && < 1.5
@@ -56,7 +56,7 @@
    main-is: Main.hs
 
    Build-Depends: base                       >= 4 && < 5
-                , containers                 <  0.6
+                , containers                 <  0.7
                 , directory                  <  1.4
                 , dlist                      >= 0.4 && < 0.9
                 , filepath                   >= 1.1 && < 1.5
diff --git a/tests/Tests/Base.hs b/tests/Tests/Base.hs
--- a/tests/Tests/Base.hs
+++ b/tests/Tests/Base.hs
@@ -43,7 +43,7 @@
 
 instance Arbitrary COpts where
    arbitrary = do
-      [a,b,c,d,e,f] <- vector 6
+      (a,b,c,d,e,f) <- arbitrary
       return.COpts $ CompOptions a b c d e f False
 
 
