diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for rio
 
+## 0.1.8.0
+
+* Re-export `Control.Monad.State.modify`, `Control.Monad.State.modify'` and `Control.Monad.State.gets` in `RIO.State`
+
 ## 0.1.7.0
 
 * Addition of `textDisplay` to `Display` class.
diff --git a/rio.cabal b/rio.cabal
--- a/rio.cabal
+++ b/rio.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: b91cb0c2c4bba78233563166dd6cd73b36b53c63115f7eab1f663f63e211f482
+-- hash: 03c9a11fb87d70a75dd9c78b679c652518ced81d54220e49b2e41637a463958b
 
 name:           rio
-version:        0.1.7.0
+version:        0.1.8.0
 synopsis:       A standard library for Haskell
 description:    See README and Haddocks at <https://www.stackage.org/package/rio>
 category:       Control
diff --git a/src/RIO/State.hs b/src/RIO/State.hs
--- a/src/RIO/State.hs
+++ b/src/RIO/State.hs
@@ -4,6 +4,9 @@
 module RIO.State
   (
     Control.Monad.State.MonadState (..)
+  , Control.Monad.State.gets
+  , Control.Monad.State.modify
+  , Control.Monad.State.modify'
   ) where
 
 import qualified Control.Monad.State
