From patchwork Wed Jan 13 16:50:46 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ilya Maximets X-Patchwork-Id: 1425888 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=openvswitch.org (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=ovs-dev-bounces@openvswitch.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ovn.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4DGD3w5v0Zz9sVn for ; Thu, 14 Jan 2021 03:51:24 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 64BAA869D9; Wed, 13 Jan 2021 16:51:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iVn1SxwV1ohV; Wed, 13 Jan 2021 16:51:22 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0F8CC8693D; Wed, 13 Jan 2021 16:51:19 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id D0914C1E7D; Wed, 13 Jan 2021 16:51:18 +0000 (UTC) X-Original-To: ovs-dev@openvswitch.org Delivered-To: ovs-dev@lists.linuxfoundation.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by lists.linuxfoundation.org (Postfix) with ESMTP id 793E2C1E7D for ; Wed, 13 Jan 2021 16:51:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 5DAE28728C for ; Wed, 13 Jan 2021 16:51:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id n1CD4kszFuBQ for ; Wed, 13 Jan 2021 16:51:12 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relay1-d.mail.gandi.net (relay1-d.mail.gandi.net [217.70.183.193]) by hemlock.osuosl.org (Postfix) with ESMTPS id 0D719872D1 for ; Wed, 13 Jan 2021 16:51:11 +0000 (UTC) X-Originating-IP: 66.187.233.206 Received: from localhost.localdomain (nat-pool-bos-t.redhat.com [66.187.233.206]) (Authenticated sender: i.maximets@ovn.org) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id 24A9A240018; Wed, 13 Jan 2021 16:51:07 +0000 (UTC) From: Ilya Maximets To: ovs-dev@openvswitch.org Date: Wed, 13 Jan 2021 11:50:46 -0500 Message-Id: <20210113165046.64603-3-i.maximets@ovn.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20210113165046.64603-1-i.maximets@ovn.org> References: <20210113165046.64603-1-i.maximets@ovn.org> MIME-Version: 1.0 Cc: Simon Horman , Ilya Maximets , Flavio Leitner Subject: [ovs-dev] [PATCH branch-2.12 2/2] Prepare for 2.12.3. X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ovs-dev-bounces@openvswitch.org Sender: "dev" Signed-off-by: Ilya Maximets --- NEWS | 3 +++ configure.ac | 2 +- debian/changelog | 6 ++++++ 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 5e9724d3e..97fd950b2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +v2.12.3 - xx xxx xxxx +--------------------- + v2.12.2 - 13 Jan 2021 --------------------- - Bug fixes diff --git a/configure.ac b/configure.ac index 1d6ae4f68..3280be992 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ # limitations under the License. AC_PREREQ(2.63) -AC_INIT(openvswitch, 2.12.2, bugs@openvswitch.org) +AC_INIT(openvswitch, 2.12.3, bugs@openvswitch.org) AC_CONFIG_SRCDIR([datapath/datapath.c]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/debian/changelog b/debian/changelog index 78de53770..f2e291b88 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +openvswitch (2.12.3-1) unstable; urgency=low + [ Open vSwitch team ] + * New upstream version + + -- Open vSwitch team Wed, 13 Jan 2021 11:26:35 -0500 + openvswitch (2.12.2-1) unstable; urgency=low [ Open vSwitch team ] * New upstream version