diff --git a/CHANGES b/CHANGES
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,7 @@
-0.3.4.1    16 June 2015
+0.3.4.2    16 June 2015
+  * fix compilation error
+
+0.3.4.1    16 June 2015 [BROKEN]
   * fix ogfs for cycles & bracelets
 
 0.3.4      15 June 2015
diff --git a/Math/Combinatorics/Species/Unlabeled.hs b/Math/Combinatorics/Species/Unlabeled.hs
--- a/Math/Combinatorics/Species/Unlabeled.hs
+++ b/Math/Combinatorics/Species/Unlabeled.hs
@@ -42,7 +42,7 @@
   singleton         = gfFromCoeffs [0,1]
   set               = gfFromCoeffs (repeat 1)
   cycle             = gfFromCoeffs (0 : repeat 1)
-  bracelet          = cycle
+  bracelet          = gfFromCoeffs (0 : repeat 1)
   o                 = ciErr "composition"
   (><)              = ciErr "cartesian product"
   (@@)              = ciErr "functor composition"
diff --git a/species.cabal b/species.cabal
--- a/species.cabal
+++ b/species.cabal
@@ -1,5 +1,5 @@
 name:           species
-version:        0.3.4.1
+version:        0.3.4.2
 license:        BSD3
 license-file:   LICENSE
 build-type:     Simple
