diff --git a/Test.hs b/Test.hs
--- a/Test.hs
+++ b/Test.hs
@@ -5,7 +5,13 @@
 module Main where
 import Test.Framework                     (defaultMain)
 import Test.Framework.Providers.HUnit     (hUnitTestToTests)
-import Data.Concurrent.Deque.Tests        (test_fifo)
+import Data.Concurrent.Deque.Tests        (tests_fifo)
 import Data.Concurrent.Queue.MichaelScott (newQ)
+import System.Environment (withArgs)
+import Test.HUnit (Test(TestLabel))
 
-main = defaultMain$ hUnitTestToTests$ test_fifo newQ
+main =
+  withArgs ["-j1","--jxml=test-results.xml"] $ 
+  defaultMain$ hUnitTestToTests$
+  TestLabel "MichaelScott" $
+  tests_fifo newQ
diff --git a/lockfree-queue.cabal b/lockfree-queue.cabal
--- a/lockfree-queue.cabal
+++ b/lockfree-queue.cabal
@@ -1,5 +1,5 @@
 Name:                lockfree-queue
-Version:             0.2.0.1
+Version:             0.2.0.2
 License:             BSD3
 License-file:        LICENSE
 Author:              Ryan R. Newton
@@ -14,6 +14,7 @@
 -- 0.1 -- initial version
 -- 0.2 -- switched to MutVar 
 -- 0.2.0.1 -- use ticketed CAS internally; add support for -prof mode
+-- 0.2.0.2 -- minor: fix for upstream change
 
 Synopsis: Michael and Scott lock-free queues.
 
