From patchwork Tue Sep 10 17:59:54 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Finucane X-Patchwork-Id: 1160508 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) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 46SXr16mXCz9s7T for ; Wed, 11 Sep 2019 04:00:17 +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="E9GV8mXT"; 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 46SXr1572CzF1dn for ; Wed, 11 Sep 2019 04:00:17 +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.2; helo=qrelay2.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="E9GV8mXT"; dkim-atps=neutral Received: from qrelay2.mxroute.com (qrelay2.mxroute.com [172.82.139.2]) (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 46SXqt0MQKzF1Yx for ; Wed, 11 Sep 2019 04:00:09 +1000 (AEST) Received: from filter001.mxrelay.co (haproxy.mxroute.com [116.203.155.46]) by qrelay2.mxroute.com (Postfix) with ESMTP id 6123E40591 for ; Tue, 10 Sep 2019 14:00:06 -0400 (EDT) Received: from one.mxroute.com (one.mxroute.com [195.201.59.211]) by filter001.mxrelay.co (Postfix) with ESMTPS id 9021D1009AC 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=jm2molArIH9B4Siu6PSkAfgs2PKOPKLekPnYdbH2yHg=; b=E9GV8mXTPr4MO1bYfAIpNBeStx O6m6lYExWTZiAdshHBzFphCIw5uiKaMy5UPwAwb5RRKh6lgWcTXOVGs7Gudq73ovSoIPMLegU49Hg Eb8JnS/8fexhRBdwlnQ5/42jt10DcvV8uTqpLPmyoCXDtXMDVWZDHrFS/BESe/4AK/TYASvVnb4hy PK8GHriLTnaWlt8cQruCHzNGGXbEXWQM+oovZJ5IUuzTAveU0ESpB6TAHOiarcE3gZ66gu0Gi1qbk YcuBlq9qdLrLyqFXTmqxVMCqCCbhDx60+LKzgASkKIy77KwuH0Rodasz1f7bwbIdEBsmkX/JrMyOn iq79OLNw==; From: Stephen Finucane To: patchwork@lists.ozlabs.org Subject: [PATCH 1/3] Release 2.2.0 Date: Tue, 10 Sep 2019 18:59:54 +0100 Message-Id: <20190910175956.5300-2-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 fc97dadf..b55d4b3b 100644 --- a/patchwork/__init__.py +++ b/patchwork/__init__.py @@ -5,7 +5,7 @@ from patchwork.version import get_latest_version -VERSION = (2, 2, 0, 'alpha', 0) +VERSION = (2, 2, 0) __version__ = get_latest_version(VERSION)