Skip to content

Commit

Permalink
hackage release
Browse files Browse the repository at this point in the history
  • Loading branch information
chessai committed Mar 24, 2019
1 parent 05329b5 commit 97f3b1c
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,22 @@
`hedgehog-classes` uses [PVP Versioning][1].
The changelog is available [on GitHub][2].

0.1.2
=====

* add `semiringLaws`, `ringLaws`, `starLaws`
* fix bug in `foldableLaws` that could cause implementations of
`foldMap` and `fold` that evaluate in weird orders to pass (rather than fail).

0.1.1
=====

* Initial (stable) hackage release.

0.0.0
=====

* Initially created.

[1]: https://pvp.haskell.org
[2]: https://github.com/chessai/hedgehog-classes/releases
[2]: https://github.com/chessai/hedgehog-classes/releases
2 changes: 1 addition & 1 deletion hedgehog-classes.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cabal-version: 2.4
name:
hedgehog-classes
version:
0.1.1.0
0.1.2
synopsis:
Hedgehog will eat your typeclass bugs
description:
Expand Down
3 changes: 2 additions & 1 deletion src/Hedgehog/Classes.hs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ module Hedgehog.Classes
#if HAVE_SEMIRINGS
, semiringLaws
, ringLaws
, starLaws
#endif
, showLaws
, showReadLaws
Expand Down Expand Up @@ -105,7 +106,7 @@ import Hedgehog.Classes.Monoid (monoidLaws, commutativeMonoidLaws)
import Hedgehog.Classes.Ord (ordLaws)
import Hedgehog.Classes.Semigroup (semigroupLaws, commutativeSemigroupLaws, exponentialSemigroupLaws, idempotentSemigroupLaws, rectangularBandSemigroupLaws)
#if HAVE_SEMIRINGS
import Hedgehog.Classes.Semiring (semiringLaws, ringLaws)
import Hedgehog.Classes.Semiring (semiringLaws, ringLaws, starLaws)
#endif
import Hedgehog.Classes.Show (showLaws)
import Hedgehog.Classes.ShowRead (showReadLaws)
Expand Down

0 comments on commit 97f3b1c

Please sign in to comment.