diff --git a/Clckwrks/IrcBot/Page/Template.hs b/Clckwrks/IrcBot/Page/Template.hs
--- a/Clckwrks/IrcBot/Page/Template.hs
+++ b/Clckwrks/IrcBot/Page/Template.hs
@@ -22,7 +22,7 @@
          -> IrcBotM Response
 template ttl hdrs bdy =
     do p <- plugins <$> get
-       (Just clckShowFn) <- getPluginRouteFn p (pluginName clckPlugin)
+       ~(Just clckShowFn) <- getPluginRouteFn p (pluginName clckPlugin)
        hdrXml <- fmap (map unClckChild) $ unXMLGenT $ asChild hdrs -- <%> <link rel="stylesheet" type="text/css" href=(IrcBotData "style.css") /> <% hdrs %></%>
        bdyXml <- fmap (map unClckChild) $ unXMLGenT $ asChild bdy
        fmap toResponse $ mapClckT f $ ClckT $ withRouteT (\f -> clckShowFn) $ unClckT $ (themeTemplate p (ThemeStyleId 0) ttl hdrXml bdyXml)
diff --git a/Clckwrks/IrcBot/Plugin.hs b/Clckwrks/IrcBot/Plugin.hs
--- a/Clckwrks/IrcBot/Plugin.hs
+++ b/Clckwrks/IrcBot/Plugin.hs
@@ -112,7 +112,7 @@
 addIrcBotAdminMenu :: ClckT url IO ()
 addIrcBotAdminMenu =
     do p <- plugins <$> get
-       (Just showIrcBotURL) <- getPluginRouteFn p (pluginName ircBotPlugin)
+       ~(Just showIrcBotURL) <- getPluginRouteFn p (pluginName ircBotPlugin)
        let reconnectURL = showIrcBotURL (IrcBotAdmin IrcBotReconnect) []
            settingsURL  = showIrcBotURL (IrcBotAdmin IrcBotSettings) []
        addAdminMenu ("IrcBot", [ (Set.fromList [Administrator, Editor], "Reconnect", reconnectURL)
diff --git a/clckwrks-plugin-ircbot.cabal b/clckwrks-plugin-ircbot.cabal
--- a/clckwrks-plugin-ircbot.cabal
+++ b/clckwrks-plugin-ircbot.cabal
@@ -1,5 +1,5 @@
 Name:                clckwrks-plugin-ircbot
-Version:             0.6.17.3
+Version:             0.6.17.5
 Synopsis:            ircbot plugin for clckwrks
 Description:         At the moment, this ircbot just provides channel logs
 Homepage:            http://www.clckwrks.com/
@@ -11,7 +11,7 @@
 Category:            Clckwrks
 Build-type:          Custom
 Cabal-version:       >=1.10
-tested-with:         GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
+tested-with:         GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.6.3
 Data-Files:
     data/style.css
 
@@ -42,22 +42,22 @@
 
   Build-depends:
     base                    < 5,
-    acid-state             >= 0.12 && < 0.15,
+    acid-state             >= 0.12 && < 0.16,
     attoparsec             >= 0.10 && < 0.14,
     blaze-html             >= 0.5 && < 0.10,
     bytestring             >= 0.10 && < 0.11,
     clckwrks               >= 0.21 && < 0.25,
-    containers             >= 0.4 && < 0.6,
+    containers             >= 0.4 && < 0.7,
     directory              >= 1.1 && < 1.4,
     filepath               >= 1.2 && < 1.5,
     happstack-server       >= 7.0 && < 7.6,
     happstack-hsp          >= 7.2 && < 7.4,
     hsp                    >= 0.9 && < 0.11,
     ircbot                 >= 0.6 && < 0.7,
-    ixset                  == 1.0.*,
+    ixset                  >= 1.0 && < 1.2,
 --    magic                  == 1.0.*,
     mtl                    >= 2.0 && < 2.3,
-    network                >= 2.3 && < 2.7,
+    network                >= 2.3 && < 2.9,
     reform                 == 0.2.*,
     reform-happstack       == 0.2.*,
     reform-hsp             >= 0.2 && < 0.3,
