diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,43 @@
+## 0.0.15
+
+* Add Bits instance for Natural compat with 7.8
+
+## 0.0.14
+
+Types:
+
+* Add bounded Natural (Zn & Zn64)
+* Add Word128 and Word256
+
+Class:
+
+* Add From/Into type class
+
+Collection:
+
+* Add breakEnd, spanEnd, revFindIndex
+* Improve arrays sorting
+* Add arrays fromListN implementation
+* Add arrays convertion primitive
+
+BlockN:
+
+* Cleanup API
+* Implement unsnoc
+
+Misc:
+
+* Improve random generation with XorShift
+* Improve ghc 8.2 support (warning removals)
+* Remove dependency on QuickCheck
+* Split lowlevel modules into basement package
+* Fix compilation with musl
+* Improve native array safety when using through pointer
+
+File:
+
+* remove foldText
+
 ## 0.0.13
 
 Block:
diff --git a/foundation.cabal b/foundation.cabal
--- a/foundation.cabal
+++ b/foundation.cabal
@@ -1,5 +1,5 @@
 name:                foundation
-version:             0.0.14
+version:             0.0.15
 synopsis:            Alternative prelude with batteries and no dependencies
 description:
     A custom prelude with no dependencies apart from base.
@@ -190,7 +190,7 @@
                       BangPatterns
                       DeriveDataTypeable
   build-depends:     base >= 4.7 && < 5
-                   , basement == 0.0.1
+                   , basement == 0.0.2
                    , ghc-prim
   -- FIXME add suport for armel mipsel
   --  CPP-options: -DARCH_IS_LITTLE_ENDIAN
