diff --git a/CHANGES.markdown b/CHANGES.markdown
--- a/CHANGES.markdown
+++ b/CHANGES.markdown
@@ -1,3 +1,6 @@
+## Changes in 2.5.8
+   - Add `modifyArgs` and `modifyMaxShrinks` to `Test.Hspec.QuickCheck` (see #380)
+
 ## Changes in 2.5.7
    - GHC 8.6.1 related changes
 
diff --git a/hspec.cabal b/hspec.cabal
--- a/hspec.cabal
+++ b/hspec.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: a8f38345efb8f07b26f9c31f289601c55100dc608d3f606b6c22ce2126b378a4
+-- hash: 40b85ddf44dc97639bb3e671d45d8dfb9cb7a6e2f2636b617e83d9db15d63374
 
 name:             hspec
-version:          2.5.7
+version:          2.5.8
 license:          MIT
 license-file:     LICENSE
 copyright:        (c) 2011-2018 Simon Hengel,
@@ -47,8 +47,8 @@
   build-depends:
       QuickCheck >=2.10
     , base ==4.*
-    , hspec-core ==2.5.7
-    , hspec-discover ==2.5.7
+    , hspec-core ==2.5.8
+    , hspec-discover ==2.5.8
     , hspec-expectations ==0.8.2.*
   exposed-modules:
       Test.Hspec
diff --git a/src/Test/Hspec/QuickCheck.hs b/src/Test/Hspec/QuickCheck.hs
--- a/src/Test/Hspec/QuickCheck.hs
+++ b/src/Test/Hspec/QuickCheck.hs
@@ -2,9 +2,11 @@
 {-# LANGUAGE ConstraintKinds #-}
 module Test.Hspec.QuickCheck (
 -- * Params
-  modifyMaxSuccess
+  modifyArgs
+, modifyMaxSuccess
 , modifyMaxDiscardRatio
 , modifyMaxSize
+, modifyMaxShrinks
 
 -- * Shortcuts
 , prop
