diff --git a/CHANGELOG.md b/CHANGELOG.md index f4f3fdc24..68cfea358 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ Group changes to describe their impact on the project, as follows: Fixed for any bug fixes. Security to invite users to upgrade in case of vulnerabilities. +## [4.5.1] - 2021-07-15 + +### Changed +- Bugs & crashes have been fixed +- SDK bumped to 5.0.1 + ## [4.5.0] - 2021-07-08 This version is a full rewrite of the app in kotlin, using modern Android components like navigation, viewmodel, databinding, coroutines, etc... diff --git a/app/build.gradle b/app/build.gradle index 8f5382cf1..06105bf02 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -29,7 +29,7 @@ if (crashlyticsEnabled()) { def gitBranch = new ByteArrayOutputStream() task getGitVersion() { - def gitVersion = "4.5.0" + def gitVersion = "4.5.1" def gitVersionStream = new ByteArrayOutputStream() def gitCommitsCount = new ByteArrayOutputStream() def gitCommitHash = new ByteArrayOutputStream() @@ -89,7 +89,7 @@ android { defaultConfig { minSdkVersion 23 targetSdkVersion 30 - versionCode 4500 + versionCode 4510 versionName "${project.version}" applicationId getPackageName() }