diff --git a/chaselev-deque.cabal b/chaselev-deque.cabal
--- a/chaselev-deque.cabal
+++ b/chaselev-deque.cabal
@@ -1,5 +1,5 @@
 Name:                chaselev-deque
-Version:             0.1.2
+Version:             0.1.3
 License:             BSD3
 License-file:        LICENSE
 Author:              Ryan R. Newton, Edward Kmett 
@@ -10,6 +10,7 @@
 
 -- Version history:
 -- 0.1.1 -- bump for fixing bugs!  First release candidate.
+-- 0.1.3 -- small release to fix version deps before atomic-primops api change
 
 Homepage: https://github.com/rrnewton/haskell-lockfree-queue/wiki
 
@@ -27,8 +28,8 @@
 -- Disabling this [2012.03.08].  It got terrible performance anyway:
 --                     Data.Concurrent.Deque.ReactorDeque
   build-depends:     base >= 4.4.0.0 && < 5, array, transformers, bits-atomic,
-                     abstract-deque, vector,
-                     atomic-primops
+                     abstract-deque >= 0.2.2, vector, ghc-prim,
+                     atomic-primops >= 0.2 && < 0.3
 --                     IORefCAS >= 0.2
   build-depends: ghc-prim
   ghc-options: -O2
@@ -43,9 +44,9 @@
 Test-Suite test-chaselev-deque
     type:       exitcode-stdio-1.0
     main-is:    Test.hs
-    build-depends: base >= 4.4.0.0 && < 5, abstract-deque, 
+    build-depends: base >= 4.4.0.0 && < 5, abstract-deque >= 0.2.2, 
                    HUnit, test-framework, test-framework-hunit,
-                   atomic-primops
+                   atomic-primops >= 0.2 && < 0.3, vector, ghc-prim
 --                   IORefCAS >= 0.2
     build-depends: containers
     ghc-options: -O2 -threaded -rtsopts 
