dbus 1.3.10 → 1.3.11
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~xml-conduitPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: xml-conduit
API changes (from Hackage documentation)
Files
- dbus.cabal +2/−2
- lib/DBus/Introspection/Render.hs +1/−1
dbus.cabal view
@@ -1,5 +1,5 @@ name: dbus-version: 1.3.10+version: 1.3.11 license: Apache-2.0 license-file: license.txt author: John Millikin <john@john-millikin.com>@@ -100,7 +100,7 @@ , transformers < 0.7 , unix < 2.9 , vector < 0.14- , xml-conduit >= 1.9.0.0 && < 1.10.0.0+ , xml-conduit >= 1.9.0.0 && < 1.11.0.0 , xml-types < 0.4 exposed-modules:
lib/DBus/Introspection/Render.hs view
@@ -37,7 +37,7 @@ formatXML :: Object -> Maybe String formatXML obj = do xml <- runST $ runMaybeT $ runRender $ runConduit $- renderRoot obj .| R.renderText (R.def {R.rsPretty = True}) .| sinkLazy+ renderRoot obj .| R.renderText R.def .| sinkLazy pure $ TL.unpack xml renderRoot :: MonadThrow m => Object -> ConduitT i Event m ()