From 7d290b96f46ed601bb265415a7f665bde10e1559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lalinsk=C3=BD?= Date: Fri, 6 Jan 2017 17:46:40 +0100 Subject: [PATCH] Prepare 0.6 release --- NEWS.rst | 6 ++++++ provision.sh | 6 +++++- setup.py | 3 ++- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/NEWS.rst b/NEWS.rst index ccc0a59..5ac85b1 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,6 +1,12 @@ Changelog ========= +Version 0.6 +----------- + +- Fixed result fetching when using a query with parameters. +- Support for Phoenix 4.9. + Version 0.5 ----------- diff --git a/provision.sh b/provision.sh index e5fd488..91cf931 100755 --- a/provision.sh +++ b/provision.sh @@ -3,7 +3,8 @@ set -e #PHOENIX_VERSION=4.7.0-HBase-1.1 -PHOENIX_VERSION=4.8.2-HBase-1.2 +#PHOENIX_VERSION=4.8.2-HBase-1.2 +PHOENIX_VERSION=4.9.0-HBase-1.2 case $PHOENIX_VERSION in 4.7.*) @@ -12,6 +13,9 @@ case $PHOENIX_VERSION in 4.8.*) PHOENIX_NAME=apache-phoenix ;; +4.9.*) + PHOENIX_NAME=apache-phoenix + ;; *) echo "! Unsupported Phoenix version - $PHOENIX_VERSION" exit 1 diff --git a/setup.py b/setup.py index 7d65372..7acf114 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def readme(): with open('README.rst') as f: return f.read() -version = "0.5" +version = "0.6" setup( name="phoenixdb", @@ -39,6 +39,7 @@ def readme(): 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], install_requires=[ 'protobuf>=3.0.0',