From patchwork Thu Nov 23 22:35:15 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 31611 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 87C2F2B82; Thu, 23 Nov 2017 23:35:23 +0100 (CET) Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id BE51829D6 for ; Thu, 23 Nov 2017 23:35:21 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 67A83209FC; Thu, 23 Nov 2017 17:35:21 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Thu, 23 Nov 2017 17:35:21 -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=SVg+vYd5ENrE6zohCL7su/E+AdNa/5paGeJb7Z Xkm30=; b=djV/gZWRhDvV2auRsVllfU5nZxmpDhjXlNfQiDmcGEIpHSXEGl6BNT 1JxEu0JnCG7Yt1wn6jH1ZcKeJdF4eac6GYiz1Lx9qXEIEkao6VumaQUitWRtq6jy V4wJL1oSXWvvmFkWEwebzMCk0TRlzR0RcET2s5GTWoq1ZILSEVXV8= 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=fm1; bh=SVg+vYd5ENrE6zohC L7su/E+AdNa/5paGeJb7ZXkm30=; b=FRapfGh1J+zUvhAfFKTrKeao/tsg/ChwU Uvyn7Dznkj2LyU05wwrovz02uyoEtiq2R5JqyFB4VZDPrWbIphqdmcf9TUTwnYw9 PbB5Vf5VTLuU1SYmGh87c/ZN/oY3SZmt3ma0u9yIze5OY8uY8WmKG0akht7GPL/b dN1zWdl/tAfLLgeFU8qL2AqeBzGcLN4lg9c4noJZlrz93aTYRpk2b8cr/ZvMbC76 1t+m0NfPktfRutJ4dpBpBKcSVS7mcO6gwhx5z+Op/zNhP+hWp4OC4BKL2KJEt7yd d6ZMlx5oBlSptzR5FVAi313DScPnk0J5+Wk33+u+/qfr+Jsqx+K7g== 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 D3B457FA76 for ; Thu, 23 Nov 2017 17:35:20 -0500 (EST) From: Thomas Monjalon To: dev@dpdk.org Date: Thu, 23 Nov 2017 23:35:15 +0100 Message-Id: <20171123223515.14484-1-thomas@monjalon.net> X-Mailer: git-send-email 2.15.0 Subject: [dpdk-dev] [PATCH] version: 18.02-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 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/librte_eal/common/include/rte_version.h b/lib/librte_eal/common/include/rte_version.h index b176f6585..adee8bbc6 100644 --- a/lib/librte_eal/common/include/rte_version.h +++ b/lib/librte_eal/common/include/rte_version.h @@ -56,12 +56,12 @@ extern "C" { /** * Major version/year number i.e. the yy in yy.mm.z */ -#define RTE_VER_YEAR 17 +#define RTE_VER_YEAR 18 /** * Minor version/month number i.e. the mm in yy.mm.z */ -#define RTE_VER_MONTH 11 +#define RTE_VER_MONTH 02 /** * Patch level number i.e. the z in yy.mm.z @@ -71,14 +71,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