haste-compiler 0.4.4.2 → 0.4.4.3
raw patch · 3 files changed
+8/−3 lines, 3 filesdep +bytestring-builderPVP ok
version bump matches the API change (PVP)
Dependencies added: bytestring-builder
API changes (from Hackage documentation)
Files
- haste-compiler.cabal +6/−1
- src/Data/JSTarget/PP.hs +1/−1
- src/Haste/Version.hs +1/−1
haste-compiler.cabal view
@@ -1,5 +1,5 @@ Name: haste-compiler-Version: 0.4.4.2+Version: 0.4.4.3 License: BSD3 License-File: LICENSE Synopsis: Haskell To ECMAScript compiler@@ -295,6 +295,11 @@ binary, data-binary-ieee754, bytestring >= 0.9.2.1,+ -- We don't use bytestring-builder directly, but its instances+ -- propagate into Haste anyway, like it or not, so we must be able to+ -- check which version is used to know if we should make a custom+ -- IsString instance for Builder or not.+ bytestring-builder, utf8-string, -- For Haste.Compiler shellmate >= 0.1.5,
src/Data/JSTarget/PP.hs view
@@ -194,7 +194,7 @@ ppList _ _ = return () -#if MIN_VERSION_bytestring(0,10,4)+#if MIN_VERSION_bytestring(0,10,4) || MIN_VERSION_bytestring_builder(0,10,4) -- bytestring contains this instance from 0.10.4.0 onwards #else instance IsString Builder where
src/Haste/Version.hs view
@@ -14,7 +14,7 @@ -- | Current Haste version. hasteVersion :: Version-hasteVersion = Version [0, 4, 4, 2] []+hasteVersion = Version [0, 4, 4, 3] [] -- | Current Haste version as an Int. The format of this version number is -- MAJOR*10 000 + MINOR*100 + MICRO.