diff --git a/Network/Kafka.hs b/Network/Kafka.hs
--- a/Network/Kafka.hs
+++ b/Network/Kafka.hs
@@ -145,7 +145,7 @@
                (addy :| [])
 
 addKafkaAddress :: KafkaAddress -> KafkaState -> KafkaState
-addKafkaAddress = over stateAddresses . NE.nub .: cons
+addKafkaAddress = over stateAddresses . NE.nub .: NE.cons
   where infixr 9 .:
         (.:) :: (c -> d) -> (a -> b -> c) -> a -> b -> d
         (.:) = (.).(.)
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
 
 A Kafka client for Haskell.
 
-Supports Kafka 0.8.x
+Supports Kafka 0.8.x and up (including 0.9.x).
 
 The protocol module is stable (the only changes will be to support changes in the Kafka protocol). The API is functional but subject to change.
 
diff --git a/milena.cabal b/milena.cabal
--- a/milena.cabal
+++ b/milena.cabal
@@ -4,7 +4,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.5.0.1
+version:             0.5.0.2
 synopsis:            A Kafka client for Haskell.
 description:
   A Kafka client for Haskell.
@@ -12,22 +12,24 @@
 license:             BSD3
 license-file:        LICENSE
 author:              Tyler Holien
-maintainer:          tyler.holien@gmail.com
+maintainer:          adam@adamflott.com
 copyright:           2014, Tyler Holien
 category:            Network
 build-type:          Simple
 stability:           alpha
 cabal-version:       >=1.10
 extra-source-files:  README.md
+bug-reports:         https://github.com/adamflott/milena/issues
+tested-with:         GHC == 7.10.3, GHC == 8.0.1
 
 source-repository head
   type: git
-  location: https://github.com/tylerholien/milena.git
+  location: https://github.com/adamflott/milena.git
 
 source-repository this
   type: git
-  location: https://github.com/tylerholien/milena.git
-  tag: 0.5.0.1
+  location: https://github.com/adamflott/milena.git
+  tag: 0.5.0.2
 
 library
   default-language: Haskell2010
@@ -44,8 +46,8 @@
                        digest        >=0.0.1.0  && <0.1,
                        containers    >=0.5      && <0.6,
                        random        >=1.0      && <1.2,
-                       transformers  >=0.3      && <0.5,
-                       lens          >=4.4      && <4.14,
+                       transformers  >=0.3      && <0.6,
+                       lens          >=4.4      && <4.16,
                        resource-pool >=0.2.3.2  && <0.3,
                        lifted-base   >=0.2.3.6  && <0.3,
                        murmur-hash   >=0.1.0.8  && <0.2,
