diff --git a/Foundation/Compat/ByteString.hs b/Foundation/Compat/ByteString.hs
--- a/Foundation/Compat/ByteString.hs
+++ b/Foundation/Compat/ByteString.hs
@@ -29,4 +29,4 @@
 toByteString :: UArray Word8 -> ByteString
 toByteString v = unsafeCreate len $ \dst -> withPtr v $ \src -> memcpy dst src len
   where
-    !len = length v
+    !(CountOf len) = length v
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,5 @@
-Copyright (c) 2015-2016 Vincent Hanquez <vincent@snarc.org>
+Copyright (c) 2015-2017 Vincent Hanquez <vincent@snarc.org>
+Copyright (c) 2017      Foundation Maintainers
 
 All rights reserved.
 
diff --git a/foundation-edge.cabal b/foundation-edge.cabal
--- a/foundation-edge.cabal
+++ b/foundation-edge.cabal
@@ -1,5 +1,5 @@
 Name:                foundation-edge
-Version:             0.0.2
+Version:             0.0.3
 Synopsis:            foundation's edge with the conventional set of packages
 Description:
     A set of functions to allow interaction with more conventional
@@ -8,23 +8,26 @@
     Current support:
     .
     * bytestring
+    .
+    * text
 License:             BSD3
 License-file:        LICENSE
-Copyright:           Vincent Hanquez <vincent@snarc.org>
+copyright:           2015-2017 Vincent Hanquez <vincent@snarc.org>, 2017- Foundation Maintainers
 Author:              Vincent Hanquez <vincent@snarc.org>
 Maintainer:          vincent@snarc.org
 Category:            foundation
 Stability:           experimental
 Build-Type:          Simple
-Homepage:            https://github.com/haskell-foundation/foundation-edge
-Bug-Reports:         https://github.com/haskell-foundation/foundation-edge/issues
+Homepage:            https://github.com/haskell-foundation/foundation
+Bug-Reports:         https://github.com/haskell-foundation/foundation/issues
 Cabal-Version:       >=1.10
-tested-with:         GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
+tested-with:         GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.1
 extra-source-files:  README.md
 
 source-repository head
   type: git
-  location: https://github.com/vincenthz/hs-foundation
+  location: https://github.com/haskell-foundation/foundation
+  subdir: edge
 
 Library
   Exposed-modules:    Foundation.Compat.ByteString
@@ -33,7 +36,7 @@
                       TypeFamilies
                       BangPatterns
                       DeriveDataTypeable
-  Build-depends:      foundation >= 0.0.7
+  Build-depends:      foundation >= 0.0.10
                     , bytestring
                     , text
   ghc-options:        -Wall
