diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# discord-haskell           [![Build Status](https://travis-ci.org/aquarial/discord-haskell.png?branch=master)](https://travis-ci.org/aquarial/discord-haskell)        [![Hackage version](http://img.shields.io/hackage/v/discord-haskell.svg?label=Hackage)](https://hackage.haskell.org/package/discord-haskell)
+# discord-haskell           [![Build Status](https://travis-ci.com/aquarial/discord-haskell.png?branch=master)](https://travis-ci.com/aquarial/discord-haskell)        [![Hackage version](http://img.shields.io/hackage/v/discord-haskell.svg?label=Hackage)](https://hackage.haskell.org/package/discord-haskell)
 
 Build that discord bot in Haskell! Also checkout the [calamity](https://github.com/nitros12/calamity) 
 haskell discord library for a more advanced interface than `discord-haskell`.
@@ -12,7 +12,7 @@
 import Data.Text (isPrefixOf, toLower, Text)
 import qualified Data.Text.IO as TIO
 
-import UnliftIO
+import UnliftIO.Concurrent
 
 import Discord
 import Discord.Types
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -6,6 +6,10 @@
 
 ## master
 
+## 1.8.6
+
+Add [missing fields](https://github.com/aquarial/discord-haskell/issues/67) to ChannelGuildCategory
+
 ## 1.8.5
 
  Fix examples/ping-pong.hs compilation error https://github.com/aquarial/discord-haskell/issues/65
diff --git a/discord-haskell.cabal b/discord-haskell.cabal
--- a/discord-haskell.cabal
+++ b/discord-haskell.cabal
@@ -1,7 +1,7 @@
 cabal-version:       2.0
 name:                discord-haskell
 -- library version is also noted at src/Discord/Rest/Prelude.hs
-version:             1.8.5
+version:             1.8.6
 description:         Functions and data types to write discord bots.
                      Official discord docs <https://discord.com/developers/docs/reference>.
                      .
diff --git a/src/Discord/Internal/Rest/Prelude.hs b/src/Discord/Internal/Rest/Prelude.hs
--- a/src/Discord/Internal/Rest/Prelude.hs
+++ b/src/Discord/Internal/Rest/Prelude.hs
@@ -29,7 +29,7 @@
   where
   -- | https://discord.com/developers/docs/reference#user-agent
   -- Second place where the library version is noted
-  agent = "DiscordBot (https://github.com/aquarial/discord-haskell, 1.8.5)"
+  agent = "DiscordBot (https://github.com/aquarial/discord-haskell, 1.8.6)"
 
 -- Append to an URL
 infixl 5 //
diff --git a/src/Discord/Internal/Types/Channel.hs b/src/Discord/Internal/Types/Channel.hs
--- a/src/Discord/Internal/Types/Channel.hs
+++ b/src/Discord/Internal/Types/Channel.hs
@@ -77,8 +77,10 @@
       }
   | ChannelGuildCategory
       { channelId          :: ChannelId
-      , channelName        :: T.Text
       , channelGuild       :: GuildId
+      , channelName        :: T.Text
+      , channelPosition    :: Integer
+      , channelPermissions :: [Overwrite]
       } deriving (Show, Eq, Ord)
 
 instance FromJSON Channel where
@@ -116,8 +118,10 @@
                        <*> o .:? "last_message_id"
       4 ->
         ChannelGuildCategory <$> o .: "id"
-                             <*> o .:  "name"
                              <*> o .:? "guild_id" .!= 0
+                             <*> o .:  "name"
+                             <*> o .:  "position"
+                             <*> o .:  "permission_overwrites"
       5 ->
         ChannelNews <$> o .:  "id"
                     <*> o .:? "guild_id" .!= 0
