From patchwork Tue Sep 10 17:59:55 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Finucane X-Patchwork-Id: 1160510 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46SXry1c7Zz9s00 for ; Wed, 11 Sep 2019 04:01:06 +1000 (AEST) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=that.guru Authentication-Results: ozlabs.org; dkim=fail reason="key not found in DNS" (0-bit key; unprotected) header.d=that.guru header.i=@that.guru header.b="liyDhW6K"; dkim-atps=neutral Received: from bilbo.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 46SXry0WNmzF1db for ; Wed, 11 Sep 2019 04:01:06 +1000 (AEST) X-Original-To: patchwork@lists.ozlabs.org Delivered-To: patchwork@lists.ozlabs.org Authentication-Results: lists.ozlabs.org; spf=none (mailfrom) smtp.mailfrom=that.guru (client-ip=172.82.139.123; helo=qrelay123.mxroute.com; envelope-from=stephen@that.guru; receiver=) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=that.guru Authentication-Results: lists.ozlabs.org; dkim=fail reason="key not found in DNS" (0-bit key; unprotected) header.d=that.guru header.i=@that.guru header.b="liyDhW6K"; dkim-atps=neutral Received: from qrelay123.mxroute.com (qrelay123.mxroute.com [172.82.139.123]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 46SXqw620HzF1Yj for ; Wed, 11 Sep 2019 04:00:12 +1000 (AEST) Received: from filter002.mxroute.com (unknown [116.203.155.46]) by qrelay123.mxroute.com (Postfix) with ESMTP id 4CEF7120939 for ; Tue, 10 Sep 2019 14:00:10 -0400 (EDT) Received: from one.mxroute.com (one.mxroute.com [195.201.59.211]) by filter002.mxroute.com (Postfix) with ESMTPS id 913F93F031 for ; Tue, 10 Sep 2019 18:00:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=that.guru; s=default; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=1V2+nKVHe/OZ+F617O7ZArW+MV6TNtxFIRqoQXKoyjA=; b=liyDhW6KEvZ8KgpGOxBYqQZht/ mHa3j/iLAk13wITTcNmFcc26kdBFzQ6RbPpmx69LwZgExum4BwFuWRe1LaUhtqGPmSxjbrpHtlCEo wrTZ2fL8wGm20Tt2Ofu1aADqNY/A+ESMZc9TTnKBvcObIEpibxzQ+ESLdMhi/wRicVKT7WFWkkecD 3RVZSc6pACR16LDqxsv2BmE6qztlii3BmKB3g7y0BOhQB1uXTfj/rVANd+t+sQgoaCPvd/QI4YtdC MLk13p+S5Jxh0TdQrFvAnTplRFrqvxmC2q+VL1gO+0QXoKsjCdwz9rNC2dlQla4Q6fyRNjezqZSR9 pS+lgfXA==; From: Stephen Finucane To: patchwork@lists.ozlabs.org Subject: [PATCH 2/3] Post-release version bump Date: Tue, 10 Sep 2019 18:59:55 +0100 Message-Id: <20190910175956.5300-3-stephen@that.guru> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190910175956.5300-1-stephen@that.guru> References: <20190910175956.5300-1-stephen@that.guru> MIME-Version: 1.0 X-AuthUser: stephen@that.guru X-BeenThere: patchwork@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Patchwork development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: patchwork-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: "Patchwork" Signed-off-by: Stephen Finucane --- patchwork/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patchwork/__init__.py b/patchwork/__init__.py index b55d4b3b..ef5c5c41 100644 --- a/patchwork/__init__.py +++ b/patchwork/__init__.py @@ -5,7 +5,7 @@ from patchwork.version import get_latest_version -VERSION = (2, 2, 0) +VERSION = (2, 3, 0, 'alpha', 0) __version__ = get_latest_version(VERSION)