diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,5 +1,13 @@
 # Changelog for haskell-xmpp
 
+## Version 2.0.3 - 2022.05.24
++ Add changes to tarball 🤦
+
+## Version 2.0.2 - 2022.05.24
++ Add coverage for 8.8.4, 8.10.7 and 9.0.2
++ Drop support for 8.6.5
++ Fix cabal base, set it to be lower then 5.
+
 ## Version 2.0.1 - 2020.11.25
 Bump cabal base version
 
diff --git a/haskell-xmpp.cabal b/haskell-xmpp.cabal
--- a/haskell-xmpp.cabal
+++ b/haskell-xmpp.cabal
@@ -1,6 +1,6 @@
 cabal-version: 2.0
 Name: haskell-xmpp
-Version: 2.0.2
+Version: 2.0.3
 License: BSD3
 License-File: LICENSE
 Author: Dmitry Astapov <dastapov@gmail.com>, pierre <k.pierre.k@gmail.com>, riskbook <support@riskbook.com>
@@ -37,7 +37,7 @@
 library
   default-language: Haskell2010
   Hs-Source-Dirs: ./src
-  Build-Depends: base > 4.11.0.0 && <= 4.15.0.0
+  Build-Depends: base > 4.11.0.0 && <= 5
                , random
                , pretty
                , array
diff --git a/src/Network/XMPP/Types.hs b/src/Network/XMPP/Types.hs
--- a/src/Network/XMPP/Types.hs
+++ b/src/Network/XMPP/Types.hs
@@ -385,4 +385,4 @@
 instance Show (Sing 'Outgoing) where
   show _ = "outgoing"
 
-deriving instance Show (Sing (dir :: StanzaPurpose)) => Show (DataByPurpose dir ext) => Show ext => Show (Stanza t dir ext)
+deriving instance (Show (Sing (dir :: StanzaPurpose)), Show (DataByPurpose dir ext), Show ext) => Show (Stanza t dir ext)
