config-value 0.7.0.0 → 0.7.0.1
raw patch · 3 files changed
+7/−2 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +5/−0
- config-value.cabal +1/−1
- src/Config/Pretty.hs +1/−1
CHANGELOG.md view
@@ -1,3 +1,8 @@+0.7.0.1+---++* Fix pretty-printing of fractional, hexadecimal numbers+ 0.7.0.0 --- * Updated number representation to preserve fractional part
config-value.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.2 name: config-value-version: 0.7.0.0+version: 0.7.0.1 synopsis: Simple, layout-based value language similar to YAML or JSON license: MIT license-file: LICENSE
src/Config/Pretty.hs view
@@ -47,7 +47,7 @@ showFrac :: Int -> Rational -> String showFrac radix 0 = ""-showFrac radix x = show w ++ rest+showFrac radix x = intToDigit w : rest where (w,f) = properFraction (x * fromIntegral radix) rest