From patchwork Mon Feb 19 20:55:24 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 35219 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7BDA97CBD; Mon, 19 Feb 2018 21:55:49 +0100 (CET) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id B47AC7CB3 for ; Mon, 19 Feb 2018 21:55:48 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 45C2E20C83; Mon, 19 Feb 2018 15:55:48 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Mon, 19 Feb 2018 15:55:48 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc; s=mesmtp; bh=y6jb+8B7KQ8HE11dtRor//4P2Efw85mrHbzFsU KuskQ=; b=Ze3F+mM8nxARlfXBgRFiZlr5+iZuUG1XF/GqQ6YdAQ5yAS9qVAk1lS PVtXNA12aQ3i6zlFo+WJV4NZvaZWAGPHeIZmod7TN5MGvsMRm6eg6CeNI+epL+I2 FlS6AaGZQkiiOvpyCCJXogMqb6Krl/3LoG79aAbOGj/xg9aLBQafY= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=y6jb+8B7KQ8HE11dt Ror//4P2Efw85mrHbzFsUKuskQ=; b=PBw1khO2n1c5LWdGgFf0pE0guJ0EXc96B u7OnXqePh948WBmxKIwegPbx3drDBFqeAoTsEJwHsRxi2dyEQZYbp8ELCWdYJdXI 5tDaxWFVp402x14wXU0ccO+Kv52n+PmQ8tEAQfQe4RGNlXAzA8zLUzkO3A0iMohz LL+7A00uC28o7VOmnOd7Xjd2KjsXhOSvIYIUI2BaxCKG6n2t5iCVHQ9woH9Z5NV6 5bIvjNWWzKJ59fpaQhkHQ1AOXbeP204gvPiuUs6VRYn9pf+Zras8Yu8MYc2BcxB/ S1KJ3LxTgOPx+fB5byLWMqBaca0BoGPyKoluqUKdxsxwTiJ0Y2TAQ== X-ME-Sender: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id C1D8B7E3CD for ; Mon, 19 Feb 2018 15:55:47 -0500 (EST) From: Thomas Monjalon To: dev@dpdk.org Date: Mon, 19 Feb 2018 21:55:24 +0100 Message-Id: <20180219205524.19153-1-thomas@monjalon.net> X-Mailer: git-send-email 2.15.1 Subject: [dpdk-dev] [PATCH] version: 18.05-rc0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Thomas Monjalon --- lib/librte_eal/common/include/rte_version.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/librte_eal/common/include/rte_version.h b/lib/librte_eal/common/include/rte_version.h index 8173802bf..f2c899d03 100644 --- a/lib/librte_eal/common/include/rte_version.h +++ b/lib/librte_eal/common/include/rte_version.h @@ -32,7 +32,7 @@ extern "C" { /** * Minor version/month number i.e. the mm in yy.mm.z */ -#define RTE_VER_MONTH 02 +#define RTE_VER_MONTH 05 /** * Patch level number i.e. the z in yy.mm.z @@ -42,14 +42,14 @@ extern "C" { /** * Extra string to be appended to version number */ -#define RTE_VER_SUFFIX "" +#define RTE_VER_SUFFIX "-rc" /** * Patch release number * 0-15 = release candidates * 16 = release */ -#define RTE_VER_RELEASE 16 +#define RTE_VER_RELEASE 0 /** * Macro to compute a version number usable for comparisons