Skip to content

Commit 822f74e

Browse files
author
Bojan
committed
Update Kotlin.
Update Gradle wrapper. Prepare for release.
1 parent c7e5ba7 commit 822f74e

File tree

8 files changed

+22
-97
lines changed

8 files changed

+22
-97
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
## Version 1.0.5
5+
6+
_2021-12-24_
7+
8+
* Update to Kotlin 1.6.10.
9+
410
## Version 1.0.4
511

612
_2021-09-25_

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ Then add the following dependencies in your app `build.gradle` or `build.gradle.
2828

2929
**Groovy**
3030
```groovy
31-
implementation "com.infinum.localian:localian:1.0.4"
31+
implementation "com.infinum.localian:localian:1.0.5"
3232
```
3333
**KotlinDSL**
3434
```kotlin
35-
implementation("com.infinum.localian:localian:1.0.4")
35+
implementation("com.infinum.localian:localian:1.0.5")
3636
```
3737

3838
## Setup

config.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ext {
77
]
88
releaseConfig = [
99
"group" : "com.infinum.localian",
10-
"version" : "1.0.4",
11-
"versionCode": 1 * 100 * 100 + 0 * 100 + 4
10+
"version" : "1.0.5",
11+
"versionCode": 1 * 100 * 100 + 0 * 100 + 5
1212
]
1313
}

gradle/libs.versions.toml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
[versions]
2-
localian = "1.0.4"
3-
gradle = "7.0.2"
4-
kotlin = "1.5.31"
5-
appcompat = "1.3.1"
6-
annotation = "1.2.0"
2+
localian = "1.0.5"
3+
gradle = "7.0.4"
4+
kotlin = "1.6.10"
5+
appcompat = "1.4.0"
6+
annotation = "1.3.0"
77
startup = "1.1.0"
88
preference = "1.1.1"
99
detekt = "1.18.0"
10-
ktlint = "10.1.0"
11-
cpd = "3.1"
12-
dokka = "1.5.0"
10+
ktlintplugin = "10.2.0"
11+
ktlint = "0.43.1"
12+
cpd = "3.2"
13+
dokka = "1.6.0"
1314
junit = "4.13.2"
1415
mockk = "1.12.0"
1516
json = "20210307"
@@ -30,7 +31,7 @@ androidx-preference = { module = "androidx.preference:preference-ktx", version.r
3031
detekt-gradle = { module = "io.gitlab.arturbosch.detekt:detekt-gradle-plugin", version.ref = "detekt" }
3132
detekt-formatting = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt" }
3233

33-
ktlint = { module = "org.jlleitschuh.gradle:ktlint-gradle", version.ref = "ktlint" }
34+
ktlint = { module = "org.jlleitschuh.gradle:ktlint-gradle", version.ref = "ktlintplugin" }
3435

3536
cpd = { module = "de.aaschmid:gradle-cpd-plugin", version.ref = "cpd" }
3637

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip

ktlint.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: "org.jlleitschuh.gradle.ktlint"
22

33
ktlint {
4-
version = "0.42.1"
4+
version = libs.versions.ktlint.get()
55
debug = false
66
android = true
77
}

localian/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ plugins {
33
id "kotlin-android"
44
}
55

6-
apply from: 'jacoco.gradle'
7-
86
android {
97
buildFeatures {
108
buildConfig = false

localian/jacoco.gradle

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)