Repository: phoenix Updated Branches: refs/heads/master 965a53581 -> 25814ecaa
PHOENIX-1766 Update version to 5.0.0 for master branch Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/25814eca Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/25814eca Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/25814eca Branch: refs/heads/master Commit: 25814ecaa52999b2cfad616be9de4118488517cc Parents: 965a535 Author: James Taylor <[email protected]> Authored: Sat Mar 21 11:23:05 2015 -0700 Committer: James Taylor <[email protected]> Committed: Sat Mar 21 11:23:05 2015 -0700 ---------------------------------------------------------------------- .../java/org/apache/phoenix/coprocessor/MetaDataProtocol.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/25814eca/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 cf0aabb..735949b 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 @@ -52,9 +52,9 @@ import com.google.protobuf.HBaseZeroCopyByteString; * @since 0.1 */ public abstract class MetaDataProtocol extends MetaDataService { - public static final int PHOENIX_MAJOR_VERSION = 4; - public static final int PHOENIX_MINOR_VERSION = 2; - public static final int PHOENIX_PATCH_NUMBER = 1; + public static final int PHOENIX_MAJOR_VERSION = 5; + public static final int PHOENIX_MINOR_VERSION = 0; + 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);
