You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by sa...@apache.org on 2015/10/15 21:29:03 UTC

phoenix git commit: Update MetaDataProtocol to 4.6.0

Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-0.98 278b66604 -> 3c15fa93c


Update MetaDataProtocol to 4.6.0


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

Branch: refs/heads/4.x-HBase-0.98
Commit: 3c15fa93c521d9329ea06b604949034dd2d4f178
Parents: 278b666
Author: Samarth <sa...@apache.org>
Authored: Thu Oct 15 12:28:37 2015 -0700
Committer: Samarth <sa...@apache.org>
Committed: Thu Oct 15 12:28:37 2015 -0700

----------------------------------------------------------------------
 .../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/3c15fa93/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 c2746b9..7d65eb2 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
@@ -55,7 +55,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 = 5;
+    public static final int PHOENIX_MINOR_VERSION = 6;
     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);