You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2019/04/26 22:19:03 UTC

[geode] branch develop updated: Fixing the minor version byte for Version.GEODE_1_10_0

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

upthewaterspout 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 39d8370  Fixing the minor version byte for Version.GEODE_1_10_0
39d8370 is described below

commit 39d8370aedad80b8c5cf252456df7390266a1434
Author: Dan Smith <up...@apache.org>
AuthorDate: Fri Apr 26 13:15:05 2019 -0700

    Fixing the minor version byte for Version.GEODE_1_10_0
    
    Due to a typo, the minor version was left at 9 in the version class.
---
 geode-core/src/main/java/org/apache/geode/internal/Version.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 ddb4be2..94bcc7f 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
@@ -267,7 +267,7 @@ public class Version implements Comparable<Version> {
 
   @Immutable
   public static final Version GEODE_1_10_0 =
-      new Version("GEODE", "1.10.0", (byte) 1, (byte) 9, (byte) 0, (byte) 0, GEODE_1_10_0_ORDINAL);
+      new Version("GEODE", "1.10.0", (byte) 1, (byte) 10, (byte) 0, (byte) 0, GEODE_1_10_0_ORDINAL);
 
   /* NOTE: when adding a new version bump the ordinal by 5. Ordinals can be short ints */