PHOENIX-2550 Increase JDBC major/minor version for 4.7 release
Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/9e66b35f Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/9e66b35f Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/9e66b35f Branch: refs/heads/4.x-HBase-1.0 Commit: 9e66b35ffda579cbf55e792d404833d701c3b91c Parents: 708a800 Author: James Taylor <[email protected]> Authored: Wed Dec 30 09:32:53 2015 -0800 Committer: James Taylor <[email protected]> Committed: Wed Dec 30 18:14:26 2015 -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/9e66b35f/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 ba06828..bf4a192 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 = 6; + public static final int PHOENIX_MINOR_VERSION = 7; 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);
