You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by an...@apache.org on 2016/05/05 06:03:27 UTC

[2/2] phoenix git commit: PHOENIX-2863 Let's roll up minor version to 8 (4.8.0) because of namespace compatibility checks

PHOENIX-2863 Let's roll up minor version to 8 (4.8.0) because of namespace compatibility checks


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

Branch: refs/heads/master
Commit: 4616e98e45289289bca849db0fc3790345dbf937
Parents: 4f5961b
Author: Ankit Singhal <an...@gmail.com>
Authored: Thu May 5 11:33:06 2016 +0530
Committer: Ankit Singhal <an...@gmail.com>
Committed: Thu May 5 11:33:06 2016 +0530

----------------------------------------------------------------------
 .../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/4616e98e/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 8c86b56..f847b97 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
@@ -60,7 +60,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 = 7;
+    public static final int PHOENIX_MINOR_VERSION = 8;
     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);