diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Revision history for telegram-lambdabot
 
+## 0.2.1 -- 2022-09-24
+
+* Bump `telegram-bot-simple` and fix runtime when receive `custom_emoji` update (see [#32](https://github.com/swamp-agr/lambdabot-telegram-plugins/pull/32));
+
 ## 0.2.0 -- 2022-05-12
 
 Implementation phase is finished. Lambdabot might be considered ready with current release.
diff --git a/lambdabot-telegram-plugins.cabal b/lambdabot-telegram-plugins.cabal
--- a/lambdabot-telegram-plugins.cabal
+++ b/lambdabot-telegram-plugins.cabal
@@ -1,6 +1,6 @@
 cabal-version:      2.4
 name:               lambdabot-telegram-plugins
-version:            0.2.0
+version:            0.2.1
 
 -- A short (one-line) description of the package.
 -- synopsis:
@@ -26,6 +26,9 @@
                     .
                     This package is a combination of both Lambdabot and Telegram bot.
 
+homepage:       https://github.com/swamp-agr/lambdabot-telegram-plugins#readme
+bug-reports:    https://github.com/swamp-agr/lambdabot-telegram-plugins/issues
+
 -- A copyright notice.
 -- copyright:
 category:           Development, Web
@@ -49,7 +52,7 @@
                     , directory
                     , edit-distance
                     , haskell-src-exts-simple
-                    , telegram-bot-simple >= 0.5.2
+                    , telegram-bot-simple >= 0.6
                     , text
                     , lambdabot-core
                     , lifted-base
diff --git a/src/Lambdabot/Config/Telegram.hs b/src/Lambdabot/Config/Telegram.hs
--- a/src/Lambdabot/Config/Telegram.hs
+++ b/src/Lambdabot/Config/Telegram.hs
@@ -27,6 +27,7 @@
     [ "ImplicitPrelude" -- workaround for bug in hint package
     , "ExtendedDefaultRules"
     , "TypeApplications"
+    , "MagicHash"
     ]
 
 -- | Language extensions used by Telegram Lambdabot: combination of predefined 'defaultExts' and user-defined ones.
