diff --git a/Data/Semigroup.hs b/Data/Semigroup.hs
--- a/Data/Semigroup.hs
+++ b/Data/Semigroup.hs
@@ -119,7 +119,7 @@
   )
 
 instance Ord a => Semigroup (Max a) where
-  Max a <> Max b = Max (a `min` b)
+  Max a <> Max b = Max (a `max` b)
 
 instance (Ord a, Bounded a) => Monoid (Max a) where
   mempty = minBound
diff --git a/semigroups.cabal b/semigroups.cabal
--- a/semigroups.cabal
+++ b/semigroups.cabal
@@ -1,6 +1,6 @@
 name:          semigroups
 category:      Control, Comonads
-version:       0.3.2
+version:       0.3.3
 license:       BSD3
 cabal-version: >= 1.6
 license-file:  LICENSE
