Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A9429200B8E for ; Mon, 12 Sep 2016 07:40:18 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A7ED2160AD9; Mon, 12 Sep 2016 05:40:18 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2E269160AC7 for ; Mon, 12 Sep 2016 07:40:18 +0200 (CEST) Received: (qmail 32710 invoked by uid 500); 12 Sep 2016 05:40:17 -0000 Mailing-List: contact commits-help@kudu.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kudu.apache.org Delivered-To: mailing list commits@kudu.apache.org Received: (qmail 32688 invoked by uid 99); 12 Sep 2016 05:40:17 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 12 Sep 2016 05:40:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 41AC7E04BA; Mon, 12 Sep 2016 05:40:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mpercy@apache.org To: commits@kudu.apache.org Date: Mon, 12 Sep 2016 05:40:18 -0000 Message-Id: <63fe5846e2184bed99b553fb121c89cf@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/5] kudu git commit: python: bump version number to 0.3.0 archived-at: Mon, 12 Sep 2016 05:40:18 -0000 python: bump version number to 0.3.0 There have been some changes to the Python client since our last ASF release, so we need to bump the version number before we do our next ASF release. Change-Id: I8c874f9f9fb235b979e3120304d52d59061a26d6 Reviewed-on: http://gerrit.cloudera.org:8080/4364 Tested-by: Kudu Jenkins Reviewed-by: Jordan Birdsell Reviewed-by: David Ribeiro Alves Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/328e1176 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/328e1176 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/328e1176 Branch: refs/heads/master Commit: 328e1176448822251b0d4090490d047437349aec Parents: 54b4570 Author: Todd Lipcon Authored: Fri Sep 9 17:02:21 2016 -0700 Committer: Todd Lipcon Committed: Sun Sep 11 23:12:45 2016 +0000 ---------------------------------------------------------------------- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/328e1176/python/setup.py ---------------------------------------------------------------------- diff --git a/python/setup.py b/python/setup.py index 837a43d..76725c7 100644 --- a/python/setup.py +++ b/python/setup.py @@ -32,7 +32,7 @@ if Cython.__version__ < '0.19.1': raise Exception('Please upgrade to Cython 0.19.1 or newer') MAJOR = 0 -MINOR = 2 +MINOR = 3 MICRO = 0 VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) ISRELEASED = True