diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+0.11.1
+---
+
+- Add `RunTG` instances for newly added methods in 6.5.1.
+
 0.11
 ---
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -23,4 +23,11 @@
 Contributions are welcome!
 Feel free to ping me on GitHub, file an issue or submit a PR :)
 
+## Compatibility
+
+| telegram-bot-api  | telegram-bot-simple |
+| ------------- | ------------- |
+| 0.10  | 6.5  |
+| 0.11.1  | 6.5.1  |
+
 _Nick_
diff --git a/src/Telegram/Bot/Simple/RunTG.hs b/src/Telegram/Bot/Simple/RunTG.hs
--- a/src/Telegram/Bot/Simple/RunTG.hs
+++ b/src/Telegram/Bot/Simple/RunTG.hs
@@ -231,6 +231,14 @@
 instance RunTG SetMyDefaultAdministratorRightsRequest (Response Bool) where
   runTG = runTG . setMyDefaultAdministratorRights
 
+-- | Wrapper around 'SetMyDescriptionRequest' request type for 'setMyDescription' method.
+instance RunTG SetMyDescriptionRequest (Response Bool) where
+  runTG = runTG . setMyDescription
+
+-- | Wrapper around 'SetMyShortDescriptionRequest' request type for 'setMyShortDescription' method.
+instance RunTG SetMyShortDescriptionRequest (Response Bool) where
+  runTG = runTG . setMyShortDescription
+
 -- | Wrapper around 'CreateChatInviteLinkRequest' request type for 'createChatInviteLink' method.
 instance RunTG CreateChatInviteLinkRequest (Response ChatInviteLink) where
   runTG = runTG . createChatInviteLink
@@ -250,6 +258,14 @@
 -- | Wrapper around 'GetMyDefaultAdministratorRightsRequest' request type for 'getMyDefaultAdministratorRights' method.
 instance RunTG GetMyDefaultAdministratorRightsRequest (Response ChatAdministratorRights) where
   runTG = runTG . getMyDefaultAdministratorRights
+
+-- | Wrapper around 'GetMyDescriptionRequest' request type for 'getMyDescription' method.
+instance RunTG GetMyDescriptionRequest (Response BotDescription) where
+  runTG = runTG . getMyDescription
+
+-- | Wrapper around 'GetMyShortDescriptionRequest' request type for 'getMyShortDescription' method.
+instance RunTG GetMyShortDescriptionRequest (Response BotShortDescription) where
+  runTG = runTG . getMyShortDescription
 
 -- | Wrapper around 'BanChatMemberRequest' request type for 'banChatMember' method.
 instance RunTG BanChatMemberRequest (Response Bool) where
diff --git a/telegram-bot-simple.cabal b/telegram-bot-simple.cabal
--- a/telegram-bot-simple.cabal
+++ b/telegram-bot-simple.cabal
@@ -1,7 +1,7 @@
 cabal-version: 1.12
 
 name:           telegram-bot-simple
-version:        0.11
+version:        0.11.1
 synopsis:       Easy to use library for building Telegram bots.
 description:    Please see the README on Github at <https://github.com/fizruk/telegram-bot-simple#readme>
 category:       Web
