packages feed

glib 0.13.6.0 → 0.13.7.0

raw patch · 2 files changed

+6/−6 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- System.Glib.GError: instance GHC.Exception.Exception System.Glib.GError.GError
+ System.Glib.Attributes: infixr 0 ::~
+ System.Glib.GError: instance GHC.Exception.Type.Exception System.Glib.GError.GError
- System.Glib.Attributes: (:=>) :: ReadWriteAttr o a b -> (IO b) -> AttrOp o
+ System.Glib.Attributes: (:=>) :: ReadWriteAttr o a b -> IO b -> AttrOp o
- System.Glib.GObject: GObject :: (ForeignPtr (GObject)) -> GObject
+ System.Glib.GObject: GObject :: ForeignPtr GObject -> GObject
- System.Glib.GValue: GValue :: (Ptr (GValue)) -> GValue
+ System.Glib.GValue: GValue :: Ptr GValue -> GValue
- System.Glib.GValueTypes: valueSetMaybeGObject :: GObjectClass gobj => GValue -> (Maybe gobj) -> IO ()
+ System.Glib.GValueTypes: valueSetMaybeGObject :: GObjectClass gobj => GValue -> Maybe gobj -> IO ()
- System.Glib.GValueTypes: valueSetPointer :: GValue -> (Ptr ()) -> IO ()
+ System.Glib.GValueTypes: valueSetPointer :: GValue -> Ptr () -> IO ()
- System.Glib.MainLoop: Source :: (ForeignPtr (Source)) -> Source
+ System.Glib.MainLoop: Source :: ForeignPtr Source -> Source
- System.Glib.Signals: ConnectId :: (CULong) -> o -> ConnectId o
+ System.Glib.Signals: ConnectId :: CULong -> o -> ConnectId o
- System.Glib.StoreValue: GVstring :: (Maybe Text) -> GenericValue
+ System.Glib.StoreValue: GVstring :: Maybe Text -> GenericValue

Files

System/Glib/Signals.chs view
@@ -107,9 +107,9 @@  type SignalName = String --- | The type of signal handler ids. If you ever need to 'disconnect' a signal--- handler then you will need to retain the 'ConnectId' you got when you--- registered it.+-- | The type of signal handler ids. If you ever need to use+-- 'signalDisconnect' to disconnect a signal handler then you will+-- need to retain the 'ConnectId' you got when you registered it. -- data GObjectClass o => ConnectId o = ConnectId {#type gulong#} o 
glib.cabal view
@@ -1,5 +1,5 @@ Name:           glib-Version:        0.13.6.0+Version:        0.13.7.0 License:        LGPL-2.1 License-file:   COPYING Copyright:      (c) 2001-2010 The Gtk2Hs Team@@ -32,7 +32,7 @@  custom-setup   setup-depends: base >= 4.6,-                 Cabal >= 1.24 && < 2.3,+                 Cabal >= 1.24 && < 2.5,                  gtk2hs-buildtools >= 0.13.2.0 && < 0.14  Library@@ -43,7 +43,7 @@                         containers         cpp-options:    -U__BLOCKS__         if os(darwin) || os(freebsd)-          cpp-options: -D__attribute__(A)= -D_Nullable= -D_Nonnull=+          cpp-options: -D__attribute__(A)= -D_Nullable= -D_Nonnull= -D_Noreturn=         if flag(closure_signals)           cpp-options:  -DUSE_GCLOSURE_SIGNALS_IMPL           c-sources: System/Glib/hsgclosure.c