Skip to content
This repository has been archived by the owner on Dec 18, 2021. It is now read-only.

Commit

Permalink
Prepare 0.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lalinsky committed Jan 6, 2017
1 parent 54a9ba4 commit 7d290b9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions NEWS.rst
Original file line number Diff line number Diff line change
@@ -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
-----------

Expand Down
6 changes: 5 additions & 1 deletion provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.*)
Expand All @@ -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
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def readme():
with open('README.rst') as f:
return f.read()

version = "0.5"
version = "0.6"

setup(
name="phoenixdb",
Expand All @@ -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',
Expand Down

0 comments on commit 7d290b9

Please sign in to comment.