diff --git a/JYU-Utils.cabal b/JYU-Utils.cabal
--- a/JYU-Utils.cabal
+++ b/JYU-Utils.cabal
@@ -1,5 +1,5 @@
 Name:                JYU-Utils
-Version:             0.1.1
+Version:             0.1.1.1
 Synopsis:            Some utility functions for JYU projects
 Description:         List, function and monad utility functions. 
                      Includes an old variant of MonadRandom that is used in 
diff --git a/Utils/MonadRandom.hs b/Utils/MonadRandom.hs
--- a/Utils/MonadRandom.hs
+++ b/Utils/MonadRandom.hs
@@ -1,5 +1,4 @@
-{-# OPTIONS_GHC -fglasgow-exts #-}
-
+{-#LANGUAGE GeneralizedNewtypeDeriving#-}
 -- Taken from haskell wiki: http://www.haskell.org/hawiki/MonadRandom
 
 module Utils.MonadRandom (
diff --git a/Utils/String.hs b/Utils/String.hs
--- a/Utils/String.hs
+++ b/Utils/String.hs
@@ -1,4 +1,4 @@
-{-# OPTIONS -fglasgow-exts #-}
+{-#LANGUAGE ScopedTypeVariables#-}
 module Utils.String where
 
 import Numeric
diff --git a/Utils/Table.hs b/Utils/Table.hs
--- a/Utils/Table.hs
+++ b/Utils/Table.hs
@@ -1,3 +1,4 @@
+{-#LANGUAGE ParallelListComp#-}
 module Utils.Table where
 import Prelude hiding (map)
 import Control.Monad
