diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for rio
 
+## 0.1.1.0
+
+* Move some accidentally included partial functions
+
 ## 0.1.0.0
 
 * Initial stable release
diff --git a/rio.cabal b/rio.cabal
--- a/rio.cabal
+++ b/rio.cabal
@@ -2,10 +2,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: fbb7c4b9567f7b9802c00b874f404950b8358f767ddc06a21b77c66e3e4cfabd
+-- hash: 41f8f90d704c32652d5e506303e73626dc68f4097e4e73c37007937b54add786
 
 name:           rio
-version:        0.1.0.0
+version:        0.1.1.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/List.hs b/src/RIO/List.hs
--- a/src/RIO/List.hs
+++ b/src/RIO/List.hs
@@ -178,8 +178,6 @@
   -- | The function is assumed to define a total ordering.
   , Data.List.sortBy
   , Data.List.insertBy
-  , Data.List.maximumBy
-  , Data.List.minimumBy
 
   -- ** The \"@generic@\" operations
   -- | The prefix \`@generic@\' indicates an overloaded function that
diff --git a/src/RIO/List/Partial.hs b/src/RIO/List/Partial.hs
--- a/src/RIO/List/Partial.hs
+++ b/src/RIO/List/Partial.hs
@@ -14,6 +14,8 @@
   -- ** Special folds
   , Data.List.maximum
   , Data.List.minimum
+  , Data.List.maximumBy
+  , Data.List.minimumBy
 
   -- * Building lists
 
