Bump client version to 5

This commit is contained in:
Amos Ng 2020-06-14 05:54:47 +08:00
parent 36afce1a1b
commit 5eb7b5d811
No known key found for this signature in database
GPG Key ID: 89086414F634D123
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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);
}