tasty-hunit 0.9 → 0.9.0.1
raw patch · 3 files changed
+45/−3 lines, 3 files
Files
- CHANGELOG +0/−1
- CHANGELOG.md +43/−0
- tasty-hunit.cabal +2/−2
− CHANGELOG
@@ -1,1 +0,0 @@-See https://github.com/feuerbach/tasty/blob/master/CHANGES.md
+ CHANGELOG.md view
@@ -0,0 +1,43 @@+Changes+=======++Version 0.9.0.1+---------------++Split the changelog out of the main tasty changelog++Version 0.9+-----------++tasty-hunit now does not depend on the original HUnit package. The functions+that were previously re-exported from HUnit have been simply copied to+tasty-hunit.++This is motivated by:++* efficiency (one less package to compile/install)+* reliability (if something happens with HUnit, we won't be affected)++The two packages are still compatible, except for the name clashes and+distinct exception types being thrown on assertion failures.++Version 0.8.0.1+---------------++Fix unbuildable haddock++Version 0.8+-----------++* Exceptions are now handled by tasty rather than by HUnit+* Update to tasty-0.8++Version 0.4.1+-------------++Do not re-export HUnit's `Testable` class++Version 0.2+-----------++Re-export useful bits of `Test.HUnit` from `Test.Tasty.HUnit`
tasty-hunit.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: tasty-hunit-version: 0.9+version: 0.9.0.1 synopsis: HUnit support for the Tasty test framework. description: HUnit support for the Tasty test framework. license: MIT@@ -14,7 +14,7 @@ -- copyright: category: Testing build-type: Simple-extra-source-files: CHANGELOG+extra-source-files: CHANGELOG.md cabal-version: >=1.10 Source-repository head