Version bumped to 4.5.1

This commit is contained in:
Sylvain Berfini 2021-07-15 10:15:22 +02:00
parent bf995e0596
commit 3452e641bd
2 changed files with 8 additions and 2 deletions

View file

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

View file

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