From patchwork Tue Nov 23 16:56:24 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Jackson X-Patchwork-Id: 12634797 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id DC3EFC433EF for ; Tue, 23 Nov 2021 16:56:53 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.229811.397354 (Exim 4.92) (envelope-from ) id 1mpZ5w-00073M-Kc; Tue, 23 Nov 2021 16:56:36 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 229811.397354; Tue, 23 Nov 2021 16:56:36 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1mpZ5w-00072i-FW; Tue, 23 Nov 2021 16:56:36 +0000 Received: by outflank-mailman (input) for mailman id 229811; Tue, 23 Nov 2021 16:56:35 +0000 Received: from mail.xenproject.org ([104.130.215.37]) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1mpZ5v-00070m-MU for xen-devel@lists.xenproject.org; Tue, 23 Nov 2021 16:56:35 +0000 Received: from xenbits.xenproject.org ([104.239.192.120]) by mail.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1mpZ5v-00086x-Lk for xen-devel@lists.xenproject.org; Tue, 23 Nov 2021 16:56:35 +0000 Received: from iwj (helo=mariner.uk.xensource.com) by xenbits.xenproject.org with local-bsmtp (Exim 4.92) (envelope-from ) id 1mpZ5v-0004Ox-Kw for xen-devel@lists.xenproject.org; Tue, 23 Nov 2021 16:56:35 +0000 Received: from [172.18.45.5] (helo=zealot.relativity.greenend.org.uk) by mariner.uk.xensource.com with esmtp (Exim 4.89) (envelope-from ) id 1mpZ5t-00075W-HH; Tue, 23 Nov 2021 16:56:33 +0000 X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=xenproject.org; s=20200302mail; h=Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=hO0oTc+a7utMhGBX2wvxTXkVwGBGpfZrGujo7r5zEP4=; b=GmECEyMgzpgI8Lgia9eZZdBAyX T+vxJfcu1sqNvutJfbM2XlCLR5OdgswtBmbZk19eOQ/WJ7rXOK5G/3KVrrDv4yA95gJ0ugllVSoDq GNMaeGf71X4L2bcJd6QOOT/xiWgT2/k5UsfngncoHaUqdJHhAk5LB/WEaz1IuI8MxWhQ=; From: Ian Jackson To: xen-devel@lists.xenproject.org Cc: iwj@xenproject.org Subject: [PATCH for-4.17 2/3] Set version to 4.17; 4.16 has branched Date: Tue, 23 Nov 2021 16:56:24 +0000 Message-Id: <20211123165625.1023-2-iwj@xenproject.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20211123165625.1023-1-iwj@xenproject.org> References: <20211123165625.1023-1-iwj@xenproject.org> MIME-Version: 1.0 Signed-off-by: Ian Jackson --- README | 10 +++++----- xen/Makefile | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README b/README index a626e56436..562b808080 100644 --- a/README +++ b/README @@ -1,9 +1,9 @@ ############################################################ -__ __ _ _ _ __ -\ \/ /___ _ __ | || | / |/ /_ _ __ ___ - \ // _ \ '_ \ | || |_ | | '_ \ _____| '__/ __| - / \ __/ | | | |__ _|| | (_) |_____| | | (__ -/_/\_\___|_| |_| |_|(_)_|\___/ |_| \___| +__ __ _ _ _ +\ \/ /___ _ __ _ _ _ __ ___| |_ __ _| |__ | | ___ + \ // _ \ '_ \ _____| | | | '_ \/ __| __/ _` | '_ \| |/ _ \ + / \ __/ | | |_____| |_| | | | \__ \ || (_| | |_) | | __/ +/_/\_\___|_| |_| \__,_|_| |_|___/\__\__,_|_.__/|_|\___| ############################################################ diff --git a/xen/Makefile b/xen/Makefile index 2fc83f266b..1fd48af7ae 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -1,8 +1,8 @@ # This is the correct place to edit the build version. # All other places this is stored (eg. compile.h) should be autogenerated. export XEN_VERSION = 4 -export XEN_SUBVERSION = 16 -export XEN_EXTRAVERSION ?= -rc$(XEN_VENDORVERSION) +export XEN_SUBVERSION = 17 +export XEN_EXTRAVERSION ?= -unstable$(XEN_VENDORVERSION) export XEN_FULLVERSION = $(XEN_VERSION).$(XEN_SUBVERSION)$(XEN_EXTRAVERSION) -include xen-version