dbus-th-introspection 0.1.0.2 → 0.1.2.0
raw patch · 4 files changed
+10/−10 lines, 4 filesdep ~dbusdep ~template-haskellPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: dbus, template-haskell
API changes (from Hackage documentation)
Files
- DBus/TH/Introspection.hs +2/−2
- DBus/TH/Introspection/Output.hs +1/−1
- dbus-introspect-hs.hs +2/−2
- dbus-th-introspection.cabal +5/−5
DBus/TH/Introspection.hs view
@@ -17,7 +17,7 @@ import DBus import DBus.Client import qualified DBus.Introspection as I-import DBus.TH as TH+import DBus.TH.EDSL as TH import DBus.TH.Introspection.Types import DBus.TH.Introspection.Output@@ -81,7 +81,7 @@ toSignature :: [I.MethodArg] -> Either String TH.Signature toSignature args = do- let (inArgs, outArgs) = partition (\a -> I.methodArgDirection a == I.directionIn) args+ let (inArgs, outArgs) = partition (\a -> I.methodArgDirection a == I.In) args if length outArgs > 1 then Left $ "Method " ++ name ++ " has more than one out parameter" else do
DBus/TH/Introspection/Output.hs view
@@ -4,7 +4,7 @@ import Data.List import Language.Haskell.TH -import DBus.TH as TH+import DBus.TH.EDSL as TH -- | Gernerate DBus function declaration pprintFunc :: TH.Function -> String
dbus-introspect-hs.hs view
@@ -5,9 +5,9 @@ import Language.Haskell.TH import DBus-import DBus.Client+import DBus.Client hiding (interfaceName) import qualified DBus.Introspection as I-import DBus.TH as TH+import DBus.TH.EDSL as TH import DBus.TH.Introspection
dbus-th-introspection.cabal view
@@ -2,7 +2,7 @@ -- further documentation, see http://haskell.org/cabal/users-guide/ name: dbus-th-introspection-version: 0.1.0.2+version: 0.1.2.0 synopsis: Generate bindings for DBus calls by using DBus introspection and dbus-th description: This package is aimed to simplify writing bindings for DBus interfaces by using DBus introspection and dbus-th package.@@ -25,8 +25,8 @@ other-extensions: TemplateHaskell, OverloadedStrings build-depends: base >=4.7 && < 5, dbus-th >=0.1.2.0,- template-haskell >=2.9 && <2.12,- dbus >=0.10 && <0.11,+ template-haskell >=2.9,+ dbus >=0.10, containers >=0.5 ghc-options: -fwarn-unused-imports default-language: Haskell2010@@ -38,8 +38,8 @@ DBus.TH.Introspection.Types build-depends: base >=4.7 && < 5, dbus-th >=0.1.2.0,- template-haskell >=2.9 && <2.12,- dbus >=0.10 && <0.11,+ template-haskell >=2.9,+ dbus >=0.10, containers >=0.5, cmdargs default-language: Haskell2010