From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id 480A66DE01EE for ; Tue, 6 Sep 2016 04:20:30 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.007 X-Spam-Level: X-Spam-Status: No, score=-0.007 tagged_above=-999 required=5 tests=[AWL=0.004, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qpvckAXmGuHu for ; Tue, 6 Sep 2016 04:20:28 -0700 (PDT) Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197]) by arlo.cworth.org (Postfix) with ESMTPS id F06456DE01D0 for ; Tue, 6 Sep 2016 04:20:27 -0700 (PDT) Received: from remotemail by fethera.tethera.net with local (Exim 4.84_2) (envelope-from ) id 1bhEQP-0007Bi-2y; Tue, 06 Sep 2016 07:20:21 -0400 Received: (nullmailer pid 17670 invoked by uid 1000); Tue, 06 Sep 2016 11:20:25 -0000 From: David Bremner To: notmuch@notmuchmail.org Subject: Re: [PATCH 5/5] lib: make notmuch_query_add_tag_exclude return a status value In-Reply-To: <20160905154806.4570-6-david@tethera.net> References: <20160905154806.4570-1-david@tethera.net> <20160905154806.4570-6-david@tethera.net> User-Agent: Notmuch/0.22.1 (http://notmuchmail.org) Emacs/24.5.1 (x86_64-pc-linux-gnu) Date: Tue, 06 Sep 2016 08:20:25 -0300 Message-ID: <8760q9i8au.fsf@zancas.localnet> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Sep 2016 11:20:30 -0000 David Bremner writes: > Since this is an ABI breaking change, bump the SONAME. > --- > lib/notmuch.h | 19 +++++++++++++++++-- > lib/query.cc | 7 ++++--- > notmuch-count.c | 9 +++++++-- > notmuch-search.c | 12 ++++++++++-- > notmuch-show.c | 13 +++++++++++-- > 5 files changed, 49 insertions(+), 11 deletions(-) And I managed to stage, but not commit the following diff --git a/lib/notmuch.h b/lib/notmuch.h index 2396aa1..312127c 100644 --- a/lib/notmuch.h +++ b/lib/notmuch.h @@ -55,8 +55,8 @@ NOTMUCH_BEGIN_DECLS * The library version number. This must agree with the soname * version in Makefile.local. */ -#define LIBNOTMUCH_MAJOR_VERSION 4 -#define LIBNOTMUCH_MINOR_VERSION 3 +#define LIBNOTMUCH_MAJOR_VERSION 5 +#define LIBNOTMUCH_MINOR_VERSION 0 #define LIBNOTMUCH_MICRO_VERSION 0 yay me.