You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by td...@apache.org on 2017/03/09 23:02:58 UTC

[45/50] [abbrv] phoenix git commit: PHOENIX-3719 Update phoenix driver version for 4.10 release

PHOENIX-3719 Update phoenix driver version for 4.10 release


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/2c66e3cb
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/2c66e3cb
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/2c66e3cb

Branch: refs/heads/omid
Commit: 2c66e3cbd085f89a0631891839242e24a63f33fc
Parents: bee7401
Author: James Taylor <ja...@apache.org>
Authored: Tue Mar 7 10:41:37 2017 -0800
Committer: James Taylor <ja...@apache.org>
Committed: Tue Mar 7 10:43:14 2017 -0800

----------------------------------------------------------------------
 .../main/java/org/apache/phoenix/coprocessor/MetaDataProtocol.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/2c66e3cb/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataProtocol.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataProtocol.java b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataProtocol.java
index dd445ce..f2abbdb 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataProtocol.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/MetaDataProtocol.java
@@ -62,7 +62,7 @@ import com.google.protobuf.ByteString;
  */
 public abstract class MetaDataProtocol extends MetaDataService {
     public static final int PHOENIX_MAJOR_VERSION = 4;
-    public static final int PHOENIX_MINOR_VERSION = 9;
+    public static final int PHOENIX_MINOR_VERSION = 10;
     public static final int PHOENIX_PATCH_NUMBER = 0;
     public static final int PHOENIX_VERSION =
             VersionUtil.encodeVersion(PHOENIX_MAJOR_VERSION, PHOENIX_MINOR_VERSION, PHOENIX_PATCH_NUMBER);