[python] - Sync version with main Now that the python client is pretty much at parity with the other clients, we will sync the versions (bringing Python to 1.1.0). This patch also updates the Development status classifier from Beta to Production/Stable.
Change-Id: I3c470182201feed15124a05024404d519b25d1b5 Reviewed-on: http://gerrit.cloudera.org:8080/4987 Tested-by: Kudu Jenkins Reviewed-by: Todd Lipcon <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/cf757c12 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/cf757c12 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/cf757c12 Branch: refs/heads/master Commit: cf757c12b8d65bbf33047dd0697de3c932d94096 Parents: cf976a4 Author: Jordan Birdsell <[email protected]> Authored: Mon Nov 7 22:18:33 2016 -0500 Committer: Jordan Birdsell <[email protected]> Committed: Tue Nov 8 17:36:44 2016 +0000 ---------------------------------------------------------------------- python/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/cf757c12/python/setup.py ---------------------------------------------------------------------- diff --git a/python/setup.py b/python/setup.py index ba17def..4681abd 100644 --- a/python/setup.py +++ b/python/setup.py @@ -31,8 +31,8 @@ import os if Cython.__version__ < '0.21.0': raise Exception('Please upgrade to Cython 0.21.0 or newer') -MAJOR = 0 -MINOR = 4 +MAJOR = 1 +MINOR = 1 MICRO = 0 VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) ISRELEASED = True @@ -127,7 +127,7 @@ LONG_DESCRIPTION = open(os.path.join(setup_dir, "README.md")).read() DESCRIPTION = "Python interface to the Apache Kudu C++ Client API" CLASSIFIERS = [ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Topic :: Database :: Front-Ends',
