From 5eb7b5d8114a9065a23eafed081642d53cae03b2 Mon Sep 17 00:00:00 2001 From: Amos Ng Date: Sun, 14 Jun 2020 05:54:47 +0800 Subject: [PATCH] Bump client version to 5 --- CHANGELOG.md | 1 + src/main/java/mdnet/base/Constants.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb0ffa5..62f4beb 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - [2020-06-13] Modified AsyncAppender queue size to 1024 by [@lflare]. +- [2020-06-13] Bumped client version to 5 by [@lflare]. ### Deprecated diff --git a/src/main/java/mdnet/base/Constants.java b/src/main/java/mdnet/base/Constants.java index 24bdad8..e39e15f 100644 --- a/src/main/java/mdnet/base/Constants.java +++ b/src/main/java/mdnet/base/Constants.java @@ -3,7 +3,7 @@ package mdnet.base; import java.time.Duration; public class Constants { - public static final int CLIENT_BUILD = 4; + public static final int CLIENT_BUILD = 5; public static final String CLIENT_VERSION = "1.0"; public static final Duration MAX_AGE_CACHE = Duration.ofDays(14); }