You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ma...@apache.org on 2015/07/20 19:14:52 UTC

[22/50] [abbrv] phoenix git commit: PHOENIX-2107 Update JDBC version to 4.5.0

PHOENIX-2107 Update JDBC version to 4.5.0


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

Branch: refs/heads/calcite
Commit: 81b3cb35679adf7772266f2aed9456273a8b0012
Parents: 39afa9f
Author: Samarth <sa...@salesforce.com>
Authored: Fri Jul 10 11:15:16 2015 -0700
Committer: Samarth <sa...@salesforce.com>
Committed: Fri Jul 10 11:15:16 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/81b3cb35/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 9009e7c..013f7a6 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 = 4;
+    public static final int PHOENIX_MINOR_VERSION = 5;
     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);