byteunits 0.4.0 → 0.4.0.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- byteunits.cabal +1/−1
- src/Data/ByteUnits.hs +1/−1
byteunits.cabal view
@@ -1,5 +1,5 @@ name: byteunits-version: 0.4.0+version: 0.4.0.1 description: Human friendly conversion between byte units (KB, MB, GB...)... synopsis: Human friendly conversion between byte units (KB, MB, GB...) license: BSD3
src/Data/ByteUnits.hs view
@@ -1,6 +1,6 @@ -- | Here is a quick example: ----- > ByteValue (1024 * 1024 * 3)+-- > ByteValue (1024 * 1024 * 3) Bytes -- > -- the above will evaluate to: ByteValue 3145728.0 Bytes -- -- > getShortHand . getAppropriateUnits $ ByteValue (1024 * 1024 * 3) Bytes