From patchwork Wed Sep 16 11:54:25 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Numan Siddique X-Patchwork-Id: 1365222 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 4Brz6h71Twz9sTq for ; Wed, 16 Sep 2020 21:54:52 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5DEA786546; Wed, 16 Sep 2020 11:54:50 +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 9m-FII2ZEjjU; Wed, 16 Sep 2020 11:54:47 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by fraxinus.osuosl.org (Postfix) with ESMTP id 86FF985DF2; Wed, 16 Sep 2020 11:54:47 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id 5DA13C0859; Wed, 16 Sep 2020 11:54:47 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@lists.linuxfoundation.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by lists.linuxfoundation.org (Postfix) with ESMTP id 7C3AEC0051 for ; Wed, 16 Sep 2020 11:54:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 623E6271F5 for ; Wed, 16 Sep 2020 11:54:45 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Xu-yUgggZNbg for ; Wed, 16 Sep 2020 11:54:43 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relay6-d.mail.gandi.net (relay6-d.mail.gandi.net [217.70.183.198]) by silver.osuosl.org (Postfix) with ESMTPS id BFB0C271D6 for ; Wed, 16 Sep 2020 11:54:42 +0000 (UTC) X-Originating-IP: 115.99.178.244 Received: from nusiddiq.home.org.com (unknown [115.99.178.244]) (Authenticated sender: numans@ovn.org) by relay6-d.mail.gandi.net (Postfix) with ESMTPSA id 9A1A3C000B; Wed, 16 Sep 2020 11:54:38 +0000 (UTC) From: numans@ovn.org To: dev@openvswitch.org Date: Wed, 16 Sep 2020 17:24:25 +0530 Message-Id: <20200916115425.3802463-1-numans@ovn.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Subject: [ovs-dev] [PATCH ovn v3 1/2] Prepare for 20.09.0. 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" From: Numan Siddique Signed-off-by: Numan Siddique Acked-by: Dumitru Ceara --- v2 -> v3 ---- * Fixed another typo in the data. v1 -> v2 ---- * Addressed the review comment from Dumitru. Corrected the version mistake in debian/changelog. NEWS | 2 +- configure.ac | 2 +- debian/changelog | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index cf18ce5080..899afdb202 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -Post-v20.06.0 +OVN v20.09.0 - xx xxx xxxx -------------------------- - Added packet marking support for traffic routed with a routing policy. diff --git a/configure.ac b/configure.ac index 25be501bfc..b660ecaf6a 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ # limitations under the License. AC_PREREQ(2.63) -AC_INIT(ovn, 20.06.90, bugs@openvswitch.org) +AC_INIT(ovn, 20.09.0, bugs@openvswitch.org) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([config.h]) diff --git a/debian/changelog b/debian/changelog index 96d4d2b46c..539213cfa7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,8 @@ -OVN (20.06.90-1) unstable; urgency=low +OVN (20.09.0-1) unstable; urgency=low * New upstream version - -- OVN team Tue 26 May 2020 01:10:35 PM EDT + -- OVN team Wed 16 Sep 2020 16:47:15 +0530 OVN (20.06.0-1) unstable; urgency=low From patchwork Wed Sep 16 11:54:44 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Numan Siddique X-Patchwork-Id: 1365223 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.138; helo=whitealder.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 whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4Brz6t0J9qz9sTp for ; Wed, 16 Sep 2020 21:55:01 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0783686E23; Wed, 16 Sep 2020 11:55:00 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 59+FXEmqG-Cv; Wed, 16 Sep 2020 11:54:58 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by whitealder.osuosl.org (Postfix) with ESMTP id 696BD86DB6; Wed, 16 Sep 2020 11:54:58 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id 3DE60C0888; Wed, 16 Sep 2020 11:54:58 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@lists.linuxfoundation.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by lists.linuxfoundation.org (Postfix) with ESMTP id 42D52C0893 for ; Wed, 16 Sep 2020 11:54:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 2DE04272DF for ; Wed, 16 Sep 2020 11:54:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Yl08eHPchshu for ; Wed, 16 Sep 2020 11:54:54 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [217.70.183.197]) by silver.osuosl.org (Postfix) with ESMTPS id 6CB7C27366 for ; Wed, 16 Sep 2020 11:54:53 +0000 (UTC) X-Originating-IP: 115.99.178.244 Received: from nusiddiq.home.org.com (unknown [115.99.178.244]) (Authenticated sender: numans@ovn.org) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 579D41C0005; Wed, 16 Sep 2020 11:54:49 +0000 (UTC) From: numans@ovn.org To: dev@openvswitch.org Date: Wed, 16 Sep 2020 17:24:44 +0530 Message-Id: <20200916115444.3802572-1-numans@ovn.org> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Subject: [ovs-dev] [PATCH ovn v3 2/2] Prepare for post-20.09.0 (20.09.90). 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" From: Numan Siddique Signed-off-by: Numan Siddique Acked-by: Dumitru Ceara --- NEWS | 4 ++++ configure.ac | 2 +- debian/changelog | 6 ++++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 899afdb202..dece5831c4 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +Post-v20.09.0 +--------------------- + + OVN v20.09.0 - xx xxx xxxx -------------------------- - Added packet marking support for traffic routed with diff --git a/configure.ac b/configure.ac index b660ecaf6a..0b17f05b9c 100644 --- a/configure.ac +++ b/configure.ac @@ -13,7 +13,7 @@ # limitations under the License. AC_PREREQ(2.63) -AC_INIT(ovn, 20.09.0, bugs@openvswitch.org) +AC_INIT(ovn, 20.09.90, bugs@openvswitch.org) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([config.h]) diff --git a/debian/changelog b/debian/changelog index 539213cfa7..5807dbb847 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +OVN (20.09.90-1) unstable; urgency=low + + * New upstream version + + -- OVN team Wed 16 Sep 2020 16:48:32 +0530 + OVN (20.09.0-1) unstable; urgency=low * New upstream version