diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,10 @@
 For the latest version of this document, please see
 [https://github.com/DougBurke/hvega/blob/master/ihaskell-hvega/CHANGELOG.md](https://github.com/DougBurke/hvega/blob/master/ihaskell-hvega/CHANGELOG.md).
 
+## 0.2.0.1
+
+Updated the supported `hvega` range to include version 0.3.
+
 ## 0.2.0.0
 
 Added the `vlShow` helper to allow Vega-Lite visualizations to be
diff --git a/default.nix b/default.nix
--- a/default.nix
+++ b/default.nix
@@ -1,7 +1,7 @@
 { mkDerivation, aeson, base, hvega, ihaskell, stdenv, text }:
 mkDerivation {
   pname = "ihaskell-hvega";
-  version = "0.2.0.0";
+  version = "0.2.0.1";
   src = ./.;
   libraryHaskellDepends = [ aeson base hvega ihaskell text ];
   homepage = "https://github.com/DougBurke/hvega";
diff --git a/ihaskell-hvega.cabal b/ihaskell-hvega.cabal
--- a/ihaskell-hvega.cabal
+++ b/ihaskell-hvega.cabal
@@ -1,5 +1,5 @@
 name:                ihaskell-hvega
-version:             0.2.0.0
+version:             0.2.0.1
 synopsis:            IHaskell display instance for hvega types.
 description:         Support Vega-Lite visualizations in IHaskell notebooks.
 homepage:            https://github.com/DougBurke/hvega
@@ -22,7 +22,7 @@
   exposed-modules:     IHaskell.Display.Hvega
   build-depends:       base >= 4.7 && < 5
                      , aeson >= 0.11 && < 1.5
-                     , hvega < 0.3
+                     , hvega < 0.4
                      , ihaskell >= 0.9.1 && < 0.10
                      , text == 1.2.*
                      
