You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by je...@apache.org on 2018/08/03 06:35:44 UTC

[incubator-dubbo] branch 2.6.3-release updated: solve compatible issue with dubbo 2.5.9, 2.5.10 (#2175)

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

jerrick pushed a commit to branch 2.6.3-release
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git


The following commit(s) were added to refs/heads/2.6.3-release by this push:
     new 44b9139  solve compatible issue with dubbo 2.5.9, 2.5.10 (#2175)
44b9139 is described below

commit 44b9139b1626b7b7603bb850b9bbc77cae0b5a7f
Author: jasonjoo2010 <hb...@163.com>
AuthorDate: Fri Aug 3 14:08:26 2018 +0800

    solve compatible issue with dubbo 2.5.9, 2.5.10 (#2175)
---
 dubbo-common/src/main/java/com/alibaba/dubbo/common/Version.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dubbo-common/src/main/java/com/alibaba/dubbo/common/Version.java b/dubbo-common/src/main/java/com/alibaba/dubbo/common/Version.java
index 99992d9..a096835 100644
--- a/dubbo-common/src/main/java/com/alibaba/dubbo/common/Version.java
+++ b/dubbo-common/src/main/java/com/alibaba/dubbo/common/Version.java
@@ -35,7 +35,7 @@ public final class Version {
     private static final Logger logger = LoggerFactory.getLogger(Version.class);
 
     // Dubbo RPC protocol version, for compatibility, it must not be between 2.0.10 ~ 2.6.2
-    public static final String DEFAULT_DUBBO_PROTOCOL_VERSION = "2.0.1";
+    public static final String DEFAULT_DUBBO_PROTOCOL_VERSION = "2.0.2";
     // Dubbo implementation version, usually is jar version.
     private static final String VERSION = getVersion(Version.class, "");
 
@@ -43,7 +43,7 @@ public final class Version {
      * For protocol compatibility purpose.
      * Because {@link #isSupportResponseAttatchment} is checked for every call, int compare expect to has higher performance than string.
      */
-    private static final int LOWEST_VERSION_FOR_RESPONSE_ATTATCHMENT = 20001; // 2.0.1
+    private static final int LOWEST_VERSION_FOR_RESPONSE_ATTATCHMENT = 20002; // 2.0.2
     private static final Map<String, Integer> VERSION2INT = new HashMap<String, Integer>();
 
     static {
@@ -202,4 +202,4 @@ public final class Version {
         }
     }
 
-}
\ No newline at end of file
+}