Skip to content

Commit

Permalink
[#79] Import (<>) from Semogroup not Monoid
Browse files Browse the repository at this point in the history
  • Loading branch information
vrom911 committed Nov 25, 2017
1 parent 3be51b3 commit 63b6edc
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.9.0
=====
* [#79](https:/serokell/universum/issues/79):
Import '(<>)' from Semigroup, not Monoid.

0.8.0
=====

Expand Down
6 changes: 3 additions & 3 deletions src/Universum.hs
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ import Data.Traversable as X (Traversable (..), fmapDefault,

#if ( __GLASGOW_HASKELL__ >= 800 )
import Data.List.NonEmpty as X (NonEmpty (..), nonEmpty)
import Data.Monoid as X
import Data.Semigroup as X (Option (..), Semigroup (sconcat, stimes),
import Data.Monoid as X hiding ((<>))
import Data.Semigroup as X (Option (..), Semigroup (sconcat, stimes, (<>)),
WrappedMonoid, cycle1, mtimesDefault,
stimesIdempotent, stimesIdempotentMonoid,
stimesMonoid)
#else
import Data.Monoid as X
import Data.Monoid as X hiding ((<>))
#endif

-- Deepseq
Expand Down
2 changes: 1 addition & 1 deletion universum.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: universum
version: 0.8.0
version: 0.9.0
synopsis: Custom prelude used in Serokell
description: Custom prelude used in Serokell
homepage: https:/serokell/universum
Expand Down

0 comments on commit 63b6edc

Please sign in to comment.