From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id DB4B641BA8; Thu, 2 Feb 2023 06:03:51 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AE72D406A2; Thu, 2 Feb 2023 06:03:51 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 1996C4067B for ; Thu, 2 Feb 2023 06:03:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675314230; x=1706850230; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=gayrixoRdVGoW9Mc9703xTrQR6ytW6gHHRMqazC8dek=; b=VQla+D0i9k58N/24CtUTQpORazGePpJWt4qvJ36DvQdG0VqqIkoCWccJ Iy5uoTnEgxtQZuUMX++4MTsSVys3nUgkheFBAiChS9Ap0N6eHGVdf39V6 fSsiNFJ+pstcnzrCyRlWwKFDABHK8UfrE/loFNy0RC3BzPmGgMRpED6T+ Xokcc2EiqRGgvcGESnE96NvhL7HQ6vuL3CDoN/7cO6e17zpA028OpvItS 6bb3wjk/S7KxvuX9KuukYzwfcfKJgj3QUUVUIbZ6fgif3kxi36N3oeR81 cw0xP62hoOA5poNSQHv/iYIYr5Uqiua3oVvJflNEckWyOKYJr7Y7O4lao g==; X-IronPort-AV: E=McAfee;i="6500,9779,10608"; a="392933722" X-IronPort-AV: E=Sophos;i="5.97,266,1669104000"; d="scan'208";a="392933722" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Feb 2023 21:03:45 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10608"; a="839045832" X-IronPort-AV: E=Sophos;i="5.97,266,1669104000"; d="scan'208";a="839045832" Received: from dpdk-lijuan-1.sh.intel.com ([10.67.119.225]) by orsmga005.jf.intel.com with ESMTP; 01 Feb 2023 21:03:44 -0800 From: Lijuan Tu To: dts@dpdk.org Cc: Lijuan Tu Subject: [PATCH] version: 23.03-rc0 Date: Thu, 2 Feb 2023 12:46:06 +0800 Message-Id: <20230202044606.3625251-1-lijuan.tu@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Start a new release cycle with empty release notes. Align DTS release notes with DPDK. Signed-off-by: Lijuan Tu --- doc/dts_gsg/rel_notes/index.rst | 7 ++++--- version.py | 6 +++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/doc/dts_gsg/rel_notes/index.rst b/doc/dts_gsg/rel_notes/index.rst index 44916c25..803347e2 100644 --- a/doc/dts_gsg/rel_notes/index.rst +++ b/doc/dts_gsg/rel_notes/index.rst @@ -7,7 +7,8 @@ Release Notes .. toctree:: :maxdepth: 1 - release_21_11 - release_22_03 - release_22_07 + release_23_03 release_22_11 + release_22_07 + release_22_03 + release_21_11 diff --git a/version.py b/version.py index c33658fb..632c4378 100755 --- a/version.py +++ b/version.py @@ -1,9 +1,9 @@ # -VERSION_MAJOR = "22" -VERSION_MINOR = "11" +VERSION_MAJOR = "23" +VERSION_MINOR = "03" VERSION_PATCH = "0" -VERSION_EXTRA = "" +VERSION_EXTRA = "rc0" __version__ = "%s.%s.%s" % (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH) -- 2.25.1