packages feed

alg 0.1.1.0 → 0.1.1.1

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Algebra: class Semigroup a => Abelian a
+ Algebra: class Semigroup a => Idempotent a

Files

Algebra.hs view
@@ -3,7 +3,7 @@ {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE TypeFamilies #-} -module Algebra (Semigroup (..), Monoid (mempty), Group (..),+module Algebra (Semigroup (..), Monoid (mempty), Group (..), Abelian, Idempotent,                 (+), (-), (*), (/)) where  import Control.Category
alg.cabal view
@@ -1,5 +1,5 @@ name:                alg-version:             0.1.1.0+version:             0.1.1.1 synopsis:            Algebraic structures -- description:          license:             BSD3