diff --git a/CHANGELOG.md b/CHANGELOG.md index f07aa09d..1c9c240e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [2.0.0-alpha03] - 2020-02-16 ### Added - Import from v1.0 and Clear all options in Settings @@ -136,6 +138,7 @@ See Pull Request #5 - View healing logs [Unreleased]: https://github.com/yashovardhan99/HealersDiary/compare/v2.0.0-alpha02...HEAD +[2.0.0-alpha03]: https://github.com/yashovardhan99/HealersDiary/compare/v2.0.0-alpha02...v2.0.0-alpha03 [2.0.0-alpha02]: https://github.com/yashovardhan99/HealersDiary/compare/v1.0.0...v2.0.0-alpha02 [1.0.0]: https://github.com/yashovardhan99/HealersDiary/compare/v0.10.0...v1.0.0 [0.10.0]: https://github.com/yashovardhan99/HealersDiary/compare/v0.9.0...v0.10.0 diff --git a/buildSrc/src/main/java/dependencies/Version.kt b/buildSrc/src/main/java/dependencies/Version.kt index 893638b3..b965cf51 100644 --- a/buildSrc/src/main/java/dependencies/Version.kt +++ b/buildSrc/src/main/java/dependencies/Version.kt @@ -13,7 +13,7 @@ object Version { private const val patch = 0 private val buildType: BuildType = BuildType.ALPHA - private const val buildCode = 2 + private const val buildCode = 3 private const val standard = (major * 100 + minor) * 100 + patch val versionCode = (standard * 10 + buildType.typeCode) * 100 + buildCode