diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog for the [`clash-ghc`](http://hackage.haskell.org/package/clash-ghc) package
 
+## 0.7.2 *April 25th 2017*
+* New features:
+  * Sum-of-product types: unused bits now "don't-care" [#212](https://github.com/clash-lang/clash-compiler/commit/fabf745793491ce3baf84ef0066b4ccf0753d503)
+* Fixes bugs:
+  * Eagerness bug in `regEn` [#104](https://github.com/clash-lang/clash-prelude/issues/104) (Thanks to @cbiffle)
+
 ## 0.7.1 *April 11th 2017*
 * New features:
   * Support distribution of primitive templates with Cabal/Hackage packages [commit](https://github.com/clash-lang/clash-compiler/commit/82cd31863aafcbaf3bdbf7746d89d13859af5aaf)
diff --git a/clash-ghc.cabal b/clash-ghc.cabal
--- a/clash-ghc.cabal
+++ b/clash-ghc.cabal
@@ -1,5 +1,5 @@
 Name:                 clash-ghc
-Version:              0.7.1
+Version:              0.7.2
 Synopsis:             CAES Language for Synchronous Hardware
 Description:
   CλaSH (pronounced ‘clash’) is a functional hardware description language that
@@ -58,12 +58,14 @@
   Main-Is:            src-ghc/Batch.hs
   Build-Depends:      base, clash-ghc
   GHC-Options:        -Wall
+  default-language:   Haskell2010
 
 executable clashi
   default-language:   Haskell2010
   Main-Is:            src-ghc/Interactive.hs
   Build-Depends:      base, clash-ghc
   GHC-Options:        -Wall
+  default-language:   Haskell2010
 
 library
   HS-Source-Dirs:     src-ghc src-bin
@@ -95,7 +97,7 @@
                       directory                 >= 1.2      && < 1.4,
                       filepath                  >= 1.3      && < 1.5,
                       ghc                       >= 8.0.1    && < 8.2,
-                      process                   >= 1.2      && < 1.5,
+                      process                   >= 1.2      && < 1.7,
                       hashable                  >= 1.1.2.3  && < 1.3,
                       haskeline                 >= 0.7.0.3  && < 0.8,
                       lens                      >= 4.0.5    && < 4.16,
@@ -105,16 +107,17 @@
                       unbound-generics          >= 0.1      && < 0.4,
                       unordered-containers      >= 0.2.1.0  && < 0.3,
 
-                      clash-lib                 >= 0.7      && < 0.8,
-                      clash-systemverilog       >= 0.7      && < 0.8,
-                      clash-vhdl                >= 0.7      && < 0.8,
-                      clash-verilog             >= 0.7      && < 0.8,
-                      clash-prelude             >= 0.11     && < 0.12,
+                      clash-lib                 >= 0.7.1    && < 0.8,
+                      clash-systemverilog       >= 0.7.2    && < 0.8,
+                      clash-vhdl                >= 0.7.2    && < 0.8,
+                      clash-verilog             >= 0.7.2    && < 0.8,
+                      clash-prelude             >= 0.11.2   && < 0.12,
                       ghc-typelits-extra        >= 0.1.3    && < 0.3,
                       ghc-typelits-knownnat     >= 0.1.2    && < 0.3,
                       ghc-typelits-natnormalise >= 0.4.3    && < 0.6,
                       deepseq                   >= 1.3.0.2  && < 1.5,
-                      time                      >= 1.4.0.1  && < 1.8,
+
+                      time                      >= 1.4.0.1  && < 1.9,
                       ghc-boot                  >= 8.0.1    && < 8.2,
                       ghci                      >= 8.0.1    && < 8.2,
                       uniplate                  >= 1.6.12   && < 1.8
