diff --git a/CHANGELOG.txt b/CHANGELOG.txt
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,6 @@
+2012-10-18, 0.4.3:
+	Dependency updates for GHC 7.6 and otherwise.
+
 2012-05-23, 0.4.2:
 	Dependency updates for GHC 7.4, thanks to Anders Kaseorg.
 
diff --git a/list-tries.cabal b/list-tries.cabal
--- a/list-tries.cabal
+++ b/list-tries.cabal
@@ -1,7 +1,7 @@
 Cabal-Version: >= 1.6
 
 Name:        list-tries
-Version:     0.4.2
+Version:     0.4.3
 Homepage:    http://iki.fi/matti.niemenmaa/list-tries/
 Synopsis:    Tries and Patricia tries: finite sets and maps for list keys
 Category:    Data, Data Structures
@@ -43,10 +43,10 @@
 Library
    Extensions: CPP
 
-   Build-Depends: base       >= 3   && < 4.6
-                , containers >= 0.3 && < 0.5
+   Build-Depends: base       >= 3   && < 4.7
+                , containers >= 0.3 && < 0.6
                 , dlist      >= 0.4 && < 0.6
-                , binary     >= 0.5 && < 0.6
+                , binary     >= 0.5 && < 0.7
 
    Exposed-Modules: Data.ListTrie.Base.Map
                     Data.ListTrie.Map
@@ -81,16 +81,16 @@
    hs-source-dirs: ., tests
    Extensions: CPP
 
-   Build-Depends: base       >= 3   && < 4.6
-                , containers >= 0.3 && < 0.5
+   Build-Depends: base       >= 3   && < 4.7
+                , containers >= 0.3 && < 0.6
                 , dlist      >= 0.4 && < 0.6
-                , binary     >= 0.5 && < 0.6
+                , binary     >= 0.5 && < 0.7
 
    if flag(testing)
-     Build-Depends: template-haskell           >= 2.3 && < 2.8
+     Build-Depends: template-haskell           >= 2.3 && < 2.9
                   , HUnit                      >= 1.2 && < 1.3
-                  , QuickCheck                 >= 2.1 && < 2.5
-                  , test-framework             >= 0.2 && < 0.6
+                  , QuickCheck                 >= 2.1 && < 2.6
+                  , test-framework             >= 0.2 && < 0.7
                   , test-framework-hunit       >= 0.2 && < 0.3
                   , test-framework-quickcheck2 >= 0.2 && < 0.3
                   , ChasingBottoms             >= 1.2 && < 1.4
diff --git a/tests/README.txt b/tests/README.txt
--- a/tests/README.txt
+++ b/tests/README.txt
@@ -1,18 +1,7 @@
-These are the tests for the Tries library by Matti Niemenmaa, and should reside
-in a subdirectory of the Tries distribution.
-
-To run the tests, run 'Main.hs'.
-
-You'll need the following packages, other versions may work but haven't been
-tested:
+These are the tests for the list-tries library by Matti Niemenmaa, and should
+reside in a subdirectory of the list-tries distribution.
 
-  base                       == 4.*
-, HUnit                      == 1.2.*
-, QuickCheck                 == 2.1.*
-, test-framework             == 0.2.*
-, test-framework-hunit       == 0.2.*
-, test-framework-quickcheck2 == 0.2.*
-, ChasingBottoms             == 1.2.*
+To run the tests, run 'Main.hs', or build list-tries with the "testing" flag.
 
-In addition, unlike the library itself, no attempt has been made to make sure
-that the tests would work with anything other than GHC.
+Unlike the library itself, no attempt has been made to make sure that the tests
+would work with anything other than GHC.
