packages feed

ihaskell-hvega 0.2.0.0 → 0.2.0.1

raw patch · 3 files changed

+7/−3 lines, 3 filesdep ~hvega

Dependency ranges changed: hvega

Files

CHANGELOG.md view
@@ -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
default.nix view
@@ -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";
ihaskell-hvega.cabal view
@@ -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.*