diff --git a/GeneralTicTacToe.cabal b/GeneralTicTacToe.cabal
--- a/GeneralTicTacToe.cabal
+++ b/GeneralTicTacToe.cabal
@@ -1,5 +1,5 @@
 name:                GeneralTicTacToe
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            A general TicTacToe game implementation.
 
 description:         Tic-tac-toe (also known as Noughts and crosses or Xs and
diff --git a/TicTacToe.hs b/TicTacToe.hs
--- a/TicTacToe.hs
+++ b/TicTacToe.hs
@@ -4,7 +4,7 @@
 import Data.Foldable (asum)
 import System.IO (hSetBuffering, stdout, BufferMode (NoBuffering))
 
-import Utils (surround, nth, isInt)
+import Data.List.Utils (surround, nth, isInt)
 
 data Tile = O | X | Empty deriving Eq
 
