You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by on...@apache.org on 2019/08/03 16:11:21 UTC

[geode] branch develop updated: Fixing new version and ordinal (#3885)

This is an automated email from the ASF dual-hosted git repository.

onichols pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 35986d8  Fixing new version and ordinal (#3885)
35986d8 is described below

commit 35986d82054eefc43c239fcabd555108a475d278
Author: Ryan McMahon <rm...@pivotal.io>
AuthorDate: Sat Aug 3 09:10:52 2019 -0700

    Fixing new version and ordinal (#3885)
---
 geode-core/src/main/java/org/apache/geode/internal/Version.java | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/geode-core/src/main/java/org/apache/geode/internal/Version.java b/geode-core/src/main/java/org/apache/geode/internal/Version.java
index 31fb2ef..cc4b1d2 100644
--- a/geode-core/src/main/java/org/apache/geode/internal/Version.java
+++ b/geode-core/src/main/java/org/apache/geode/internal/Version.java
@@ -266,14 +266,15 @@ public class Version implements Comparable<Version> {
   private static final byte GEODE_1_10_0_ORDINAL = 105;
 
   @Immutable
-  public static final Version GEODE_1_11_0 =
+  public static final Version GEODE_1_10_0 =
       new Version("GEODE", "1.10.0", (byte) 1, (byte) 10, (byte) 0, (byte) 0, GEODE_1_10_0_ORDINAL);
 
   private static final byte GEODE_1_11_0_ORDINAL = 107;
 
   @Immutable
-  public static final Version GEODE_1_10_0 =
-      new Version("GEODE", "1.10.0", (byte) 1, (byte) 10, (byte) 0, (byte) 0, GEODE_1_10_0_ORDINAL);
+  public static final Version GEODE_1_11_0 =
+      new Version("GEODE", "1.11.0", (byte) 1, (byte) 11, (byte) 0, (byte) 0, GEODE_1_11_0_ORDINAL);
+
   /* NOTE: when adding a new version bump the ordinal by 2. Ordinals can be short ints */
 
   /**