dump 0.2.5 → 0.2.6
raw patch · 3 files changed
+15/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGES.md +1/−0
- FEATURES.md +11/−1
- dump.cabal +3/−3
+ CHANGES.md view
@@ -0,0 +1,1 @@+# See ./FEATURES.md
FEATURES.md view
@@ -1,8 +1,13 @@ # Description To attain a changelog of this library between two arbitrary versions-you can use `git diff`. For example: `git diff v0.1.0..v0.2.0 -- FEATURES.md`+you ask git for a diff on this file. For example: + git diff v0.2.0..v0.2.6 -- FEATURES.md++Alternatively, you may obtain a diff between two versions via any online+diffing service, [such as this one](http://www.diffnow.com/?url1=https://raw.githubusercontent.com/Wizek/dump/v0.2.0/FEATURES.md&url2=https://raw.githubusercontent.com/Wizek/dump/v0.2.6/FEATURES.md).+ # Features * Use it with Debug.Trace: `trace [d|x, y, z|] x`@@ -40,3 +45,8 @@ # Known issues n/a++# Miscellaneous++* Some Haddock documentation, probably more to come+* Description in FEATURES.md
dump.cabal view
@@ -2,13 +2,13 @@ -- see http://haskell.org/cabal/users-guide/ name: dump-version: 0.2.5+version: 0.2.6 synopsis: Dumps the names and values of expressions to ease debugging. description: Can be used with "Debug.Trace", "Test.QuickCheck", or just plain old "System.IO"'s "putStrLn".-+ . See README.md and FEATURES.md for further details. license: MIT@@ -17,7 +17,7 @@ maintainer: dumplibhs.psssst@dfgh.net category: Development build-type: Simple-extra-source-files: README.md, FEATURES.md+extra-source-files: README.md, FEATURES.md, CHANGES.md cabal-version: >=1.10 homepage: https://github.com/Wizek/dump