From patchwork Thu Jul 2 03:39:18 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amitay Isaacs X-Patchwork-Id: 1320971 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49y3m4066Yz9sQt for ; Thu, 2 Jul 2020 13:41:08 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=ozlabs.org Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.a=rsa-sha256 header.s=201707 header.b=WNKVylcw; dkim-atps=neutral Received: from bilbo.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 49y3m31VXSzDqnw for ; Thu, 2 Jul 2020 13:41:07 +1000 (AEST) X-Original-To: pdbg@lists.ozlabs.org Delivered-To: pdbg@lists.ozlabs.org Received: from ozlabs.org (bilbo.ozlabs.org [IPv6:2401:3900:2:1::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 49y3kN3mCFzDqsl for ; Thu, 2 Jul 2020 13:39:40 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dmarc=pass (p=none dis=none) header.from=ozlabs.org Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; secure) header.d=ozlabs.org header.i=@ozlabs.org header.a=rsa-sha256 header.s=201707 header.b=WNKVylcw; dkim-atps=neutral Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 49y3kM4ycCz9sRf; Thu, 2 Jul 2020 13:39:39 +1000 (AEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ozlabs.org; s=201707; t=1593661179; bh=OxWCatXq92t1e8+gQAxTno06Bt42BDSpBD9FHmcAocs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=WNKVylcwWvsMiHfb1RISr2ZSQMiU2L69XzwvjBDtEYzwTlBSYJZOJZ9nNCGHQ1dGu ZSgZMRctia3Yh27xTbZzA4fljHHIto6bRmtmIjRNgL53/ni/vlr06mXd2m1NvpEqLs 6zWJ7IaDJzFsAnz7x2Zdm4c95BDUvOwXY8UL26U5YiLK6AZsYDnqlYDabS2jelotBY bQT7g39qmzs56NcL/YtmVriQl0JromXImWkeSb/Vr7EWtUQMNWyql5dy2Lpnadu0Eo m+2ydeUnDr4zPEaCrTsJE0hXoB5NsE9D8xEk7VYGmBkHscfmjG7s19zOdN8GUS8j7M PbYqlv1qc4vxw== From: Amitay Isaacs To: pdbg@lists.ozlabs.org Date: Thu, 2 Jul 2020 13:39:18 +1000 Message-Id: <20200702033918.708013-20-amitay@ozlabs.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200702033918.708013-1-amitay@ozlabs.org> References: <20200702033918.708013-1-amitay@ozlabs.org> MIME-Version: 1.0 Subject: [Pdbg] [PATCH 19/19] configure: Release 3.0 X-BeenThere: pdbg@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "mailing list for https://github.com/open-power/pdbg development" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Amitay Isaacs Errors-To: pdbg-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Pdbg" The library API has changed, so update SO library version. Signed-off-by: Amitay Isaacs --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 3e3db10..0f8b9de 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ -AC_INIT([pdbg], [2.5-rc1]) +AC_INIT([pdbg], [3.0]) AM_INIT_AUTOMAKE([subdir-objects]) AM_SILENT_RULES([yes]) -AC_SUBST(SONAME_CURRENT, 3) +AC_SUBST(SONAME_CURRENT, 4) AC_SUBST(SONAME_REVISION, 0) AC_SUBST(SONAME_AGE, 0)