diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Change log
 
+## 0.2.0.2
+
+* Link test suite with `-threaded` RTS option
+
 ## 0.2.0.1
 
 * Backwards compatibility with GHC 8.4 (@pbrisbin)
diff --git a/context-resource.cabal b/context-resource.cabal
--- a/context-resource.cabal
+++ b/context-resource.cabal
@@ -1,11 +1,11 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.34.4.
+-- This file has been generated from package.yaml by hpack version 0.35.2.
 --
 -- see: https://github.com/sol/hpack
 
 name:           context-resource
-version:        0.2.0.1
+version:        0.2.0.2
 synopsis:       Thread-safe, pool-compatible resource provider
 description:    A thread-safe, pool-compatible resource provider abstraction that supports
                 resource-sharing within nested actions.
@@ -51,7 +51,7 @@
       Paths_context_resource
   hs-source-dirs:
       test-suite
-  ghc-options: -Wall -fwarn-tabs -Wincomplete-uni-patterns -Wredundant-constraints
+  ghc-options: -Wall -fwarn-tabs -Wincomplete-uni-patterns -Wredundant-constraints -threaded -with-rtsopts=-N
   build-tool-depends:
       hspec-discover:hspec-discover
   build-depends:
diff --git a/package.yaml b/package.yaml
--- a/package.yaml
+++ b/package.yaml
@@ -1,5 +1,5 @@
 name: context-resource
-version: '0.2.0.1'
+version: '0.2.0.2'
 github: "jship/context/context-resource"
 license: MIT
 license-file: LICENSE.md
@@ -43,3 +43,6 @@
     - context
     - context-resource
     - hspec
+    ghc-options:
+    - -threaded
+    - -with-rtsopts=-N
