diff --git a/CHANGES.md b/CHANGES.md
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,10 @@
 Changelog for singletons project
 ================================
 
+2.0.0.2
+-------
+ * Fix fixity of `*`.
+
 2.0.0.1
 -------
  * Make haddock work.
diff --git a/singletons.cabal b/singletons.cabal
--- a/singletons.cabal
+++ b/singletons.cabal
@@ -1,5 +1,5 @@
 name:           singletons
-version:        2.0.0.1
+version:        2.0.0.2
                 -- Remember to bump version in the Makefile as well
 cabal-version:  >= 1.10
 synopsis:       A framework for generating singleton types
@@ -38,7 +38,7 @@
 source-repository this
   type:     git
   location: https://github.com/goldfirere/singletons.git
-  tag:      v2.0.0.1
+  tag:      v2.0.0.2
 
 library
   hs-source-dirs:     src
diff --git a/src/Data/Singletons/Prelude/Num.hs b/src/Data/Singletons/Prelude/Num.hs
--- a/src/Data/Singletons/Prelude/Num.hs
+++ b/src/Data/Singletons/Prelude/Num.hs
@@ -47,7 +47,7 @@
       (+), (-), (*)       :: a -> a -> a
       infixl 6 +
       infixl 6 -
-      infixl 6 *
+      infixl 7 *
       -- Unary negation.
       negate              :: a -> a
       -- Absolute value.
