From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 726E544BE for ; Fri, 1 Jun 2018 13:07:49 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 01FFF21B8B; Fri, 1 Jun 2018 07:07:49 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Fri, 01 Jun 2018 07:07:49 -0400 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=3eiug7u/r6/gOMx4RNEwqvWEs+FHH46ZFCIZ5O kiq1Y=; b=fvAT+xMvVJFuuQWGBRteBwgc77lRp1q3etlQQPwJQdNt/hLME7kvNc s+Aqh8vJt+17RrtK07BCOHss8jzHy0vBhpdjOnpAaV2TZ3l9KkRVYyqQ6q2/2AiF RGdO1ekG91RVwQxF0IkaYMZHjR2GqmbDyw4aIf6ujco7sOpfdnQSE= 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=3eiug7u/r6/gOMx4R NEwqvWEs+FHH46ZFCIZ5Okiq1Y=; b=LRcFkljTIIeTPERio97zpJt1Q1Zzb3BB6 k5AkrZOYWuDcl15YiZR47JjaUIw39x9T1IO50Cwl9HANROUgRlBRtVmwmp8L8f0Z E9HJbsUwHbE2New18QLkyqyVF6h6rs+qcku3ofZHvB0qdDTQXqVcc6tH8o7dymUg DVD/I1lZkyQGRwQaguct+Ngt7fqLMSxsMmxHCOr8BqcDQyYMF3XB1sCYGHVWhBsO JwGmwZj4SUXJBhZDNqi1mr5bNpuYdSdYqLO5sLPYgD7dDKkD95ziZkALgDrJ5y6k e5dIlgCeS+PFseots/sm6XUQXqlT5ipuNXIKQlw7Z5YQOjOWSDPtg== X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: X-ME-Proxy: 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 618A6E4853 for ; Fri, 1 Jun 2018 07:07:48 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Date: Fri, 1 Jun 2018 13:07:42 +0200 Message-Id: <20180601110742.11927-1-thomas@monjalon.net> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH] version: 18.08-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: , X-List-Received-Date: Fri, 01 Jun 2018 11:07:49 -0000 Signed-off-by: Thomas Monjalon --- The new release cycle is open, and it will be a short one! Please consider reviewing your peers, and contribute to respect the release schedule. If you think some patches are already ready for integration in master, please notify me. Note that changes with big impact (renames or core features) are preferred to be integrated early in the cycle. Thanks for your attention --- lib/librte_eal/common/include/rte_version.h | 6 +++--- meson.build | 2 +- 2 files 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 6e2a23624..8eb58c462 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 05 +#define RTE_VER_MONTH 8 /** * 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 diff --git a/meson.build b/meson.build index 5b2234f09..a1c91279a 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # Copyright(c) 2017 Intel Corporation project('DPDK', 'C', - version: '18.05.0', + version: '18.08-rc0', license: 'BSD', default_options: ['buildtype=release', 'default_library=static'], meson_version: '>= 0.41' -- 2.17.1