diff --git a/GI/Notify.hs b/GI/Notify.hs
--- a/GI/Notify.hs
+++ b/GI/Notify.hs
@@ -140,6 +140,7 @@
             jIcon' <- textToCString jIcon
             return jIcon'
     result <- notify_notification_new summary' maybeBody maybeIcon
+    checkUnexpectedReturnNULL "notify_notification_new" result
     result' <- (wrapObject Notification) result
     freeMem summary'
     freeMem maybeBody
@@ -840,6 +841,7 @@
     m T.Text
 getAppName  = liftIO $ do
     result <- notify_get_app_name
+    checkUnexpectedReturnNULL "notify_get_app_name" result
     result' <- cstringToText result
     return result'
 
@@ -860,6 +862,7 @@
     m [T.Text]
 getServerCaps  = liftIO $ do
     result <- notify_get_server_caps
+    checkUnexpectedReturnNULL "notify_get_server_caps" result
     result' <- unpackGList result
     result'' <- mapM cstringToText result'
     mapGList freeMem result
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -454,49 +454,3 @@
 FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 DAMAGES.
-
-                     END OF TERMS AND CONDITIONS
-
-           How to Apply These Terms to Your New Libraries
-
-  If you develop a new library, and you want it to be of the greatest
-possible use to the public, we recommend making it free software that
-everyone can redistribute and change.  You can do so by permitting
-redistribution under these terms (or, alternatively, under the terms of the
-ordinary General Public License).
-
-  To apply these terms, attach the following notices to the library.  It is
-safest to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least the
-"copyright" line and a pointer to where the full notice is found.
-
-    <one line to give the library's name and a brief idea of what it does.>
-    Copyright (C) <year>  <name of author>
-
-    This library is free software; you can redistribute it and/or
-    modify it under the terms of the GNU Lesser General Public
-    License as published by the Free Software Foundation; either
-    version 2.1 of the License, or (at your option) any later version.
-
-    This library is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-    Lesser General Public License for more details.
-
-    You should have received a copy of the GNU Lesser General Public
-    License along with this library; if not, write to the Free Software
-    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
-
-Also add information on how to contact you by electronic and paper mail.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the library, if
-necessary.  Here is a sample; alter the names:
-
-  Yoyodyne, Inc., hereby disclaims all copyright interest in the
-  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
-
-  <signature of Ty Coon>, 1 April 1990
-  Ty Coon, President of Vice
-
-That's all there is to it!
diff --git a/gi-notify.cabal b/gi-notify.cabal
--- a/gi-notify.cabal
+++ b/gi-notify.cabal
@@ -1,6 +1,6 @@
 -- Autogenerated, do not edit.
 name:               gi-notify
-version:            0.2.31.9
+version:            0.2.31.10
 synopsis:           Notify bindings
 description:        Bindings for Notify, autogenerated by haskell-gi.
 homepage:           https://github.com/haskell-gi/haskell-gi
@@ -17,10 +17,10 @@
     exposed-modules:    GI.Notify, GI.NotifyAttributes, GI.NotifySignals
     pkgconfig-depends:  gdk-pixbuf-2.0 >= 2.31
     build-depends: base >= 4.7 && <5,
-        haskell-gi-base >= 0.9 && < 1,
-        gi-glib >= 0.2.44.9 && < 0.3,
-        gi-gobject >= 0.2.44.9 && < 0.3,
-        gi-gdkpixbuf >= 0.2.31.9 && < 0.3,
+        haskell-gi-base >= 0.10 && < 1,
+        gi-glib >= 0.2.44.10 && < 0.3,
+        gi-gobject >= 0.2.44.10 && < 0.3,
+        gi-gdkpixbuf >= 0.2.31.10 && < 0.3,
         bytestring >= 0.10,
         containers >= 0.5,
         text >= 1.0,
