From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id 101005AB4 for ; Wed, 21 Jan 2015 21:59:00 +0100 (CET) Received: from hmsreliant.think-freely.org ([2001:470:8:a08:7aac:c0ff:fec2:933b] helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63) (envelope-from ) id 1YE2Mb-0007C7-KA for dev@dpdk.org; Wed, 21 Jan 2015 15:58:59 -0500 Date: Wed, 21 Jan 2015 15:58:56 -0500 From: Neil Horman To: dev@dpdk.org Message-ID: <20150121205856.GC32617@hmsreliant.think-freely.org> References: <1419109299-9603-1-git-send-email-nhorman@tuxdriver.com> <1421873870-21754-1-git-send-email-nhorman@tuxdriver.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1421873870-21754-1-git-send-email-nhorman@tuxdriver.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-Spam-Score: -2.9 (--) X-Spam-Status: No Subject: Re: [dpdk-dev] [PATCH v7 01/26] version: 2.0.0-rc0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jan 2015 20:59:00 -0000 On Wed, Jan 21, 2015 at 03:57:25PM -0500, Neil Horman wrote: > From: Thomas Monjalon > > 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 d2686ae..a267040 100644 > --- a/lib/librte_eal/common/include/rte_version.h > +++ b/lib/librte_eal/common/include/rte_version.h > @@ -54,12 +54,12 @@ extern "C" { > /** > * Major version number i.e. the x in x.y.z > */ > -#define RTE_VER_MAJOR 1 > +#define RTE_VER_MAJOR 2 > > /** > * Minor version number i.e. the y in x.y.z > */ > -#define RTE_VER_MINOR 8 > +#define RTE_VER_MINOR 0 > > /** > * Patch level number i.e. the z in x.y.z > @@ -69,14 +69,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_PATCH_RELEASE 16 > +#define RTE_VER_PATCH_RELEASE 0 > > /** > * Macro to compute a version number usable for comparisons > -- > 2.1.0 > > Shoot, sorry, exuse this post, something just went sideways with my git tree here Neil