haskell-xmpp 2.0.2 → 2.0.3
raw patch · 3 files changed
+11/−3 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- Changelog.md +8/−0
- haskell-xmpp.cabal +2/−2
- src/Network/XMPP/Types.hs +1/−1
Changelog.md view
@@ -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
haskell-xmpp.cabal view
@@ -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
src/Network/XMPP/Types.hs view
@@ -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)