]> git.notmuchmail.org Git - notmuch/commitdiff
lib: Bump SO version from 2.0.0 to 3.0.0
authorAustin Clements <amdragon@MIT.EDU>
Sat, 28 Apr 2012 22:25:36 +0000 (18:25 -0400)
committerDavid Bremner <bremner@debian.org>
Sat, 5 May 2012 23:06:09 +0000 (20:06 -0300)
We've changed the APIs of notmuch_database_open,
notmuch_database_create, and notmuch_database_close.

Amended by db: also bump string in bindings/python/notmuch/globals.py

NEWS
bindings/python/notmuch/globals.py
lib/Makefile.local

diff --git a/NEWS b/NEWS
index c0cb3a28750d10ddc293ec114225caf83fc5dc40..9e32d56c64442856a603209a7353577d68634618 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -81,6 +81,9 @@ contrib/ from now on.
 Library changes
 ---------------
 
 Library changes
 ---------------
 
+The API changes detailed below break binary and source compatibility,
+so libnotmuch has been bumped to version 3.0.0.
+
 The function notmuch_database_close has been split into
 notmuch_database_close and notmuch_database_destroy
 
 The function notmuch_database_close has been split into
 notmuch_database_close and notmuch_database_destroy
 
index 823c3e23332fce884505f07f25fa4b2ed896c00a..f5fad72aa4edf638f98b2508e0bce501fd2a9e55 100644 (file)
@@ -22,7 +22,7 @@ from ctypes import CDLL, Structure, POINTER
 #-----------------------------------------------------------------------------
 #package-global instance of the notmuch library
 try:
 #-----------------------------------------------------------------------------
 #package-global instance of the notmuch library
 try:
-    nmlib = CDLL("libnotmuch.so.2")
+    nmlib = CDLL("libnotmuch.so.3")
 except:
     raise ImportError("Could not find shared 'notmuch' library.")
 
 except:
     raise ImportError("Could not find shared 'notmuch' library.")
 
index 54c4dea4560b422f39a47cc5304b6de0b1a0484d..8a9aa28a13365a783e68e811c972f611d73b6708 100644 (file)
@@ -5,7 +5,7 @@
 # the library interface, (such as the deletion of an API or a major
 # semantic change that breaks formerly functioning code).
 #
 # the library interface, (such as the deletion of an API or a major
 # semantic change that breaks formerly functioning code).
 #
-LIBNOTMUCH_VERSION_MAJOR = 2
+LIBNOTMUCH_VERSION_MAJOR = 3
 
 # The minor version of the library interface. This should be incremented at
 # the time of release for any additions to the library interface,
 
 # The minor version of the library interface. This should be incremented at
 # the time of release for any additions to the library interface,