Skip to content

Commit 6212dfb

Browse files
authored
Feature/update (#24)
* Update Gradle * Update Kotlin * Update Plugins * Update dependencies * Update version
1 parent f7a51d8 commit 6212dfb

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
tasks.wrapper {
2-
gradleVersion = "8.11.1"
2+
gradleVersion = "8.12.1"
33
}
44

55
allprojects {
66

77
group = "com.ucasoft.ktor"
88

9-
version = "0.51.2"
9+
version = "0.53.4"
1010

1111
repositories {
1212
mavenCentral()

buildSrc/src/main/kotlin/Dependensies.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import org.gradle.api.Project
22

3-
const val ktorVersion = "3.0.2"
3+
const val ktorVersion = "3.1.0"
44
const val kotestVersion = "5.9.1"
55

66
fun Project.ktor(module: String) = "io.ktor:ktor-$module:$ktorVersion"

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

ktor-simple-cache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Ktor Simple Cache
22
Base solution which provides the plugin implementation and abstract class for cache providers.
33

4-
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-cache/0.51.2?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-cache/0.51.2/jar)
4+
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-cache/0.53.4?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-cache/0.53.4/jar)
55
## Setup
66
### Gradle
77
```kotlin
88
repositories {
99
mavenCentral()
1010
}
1111

12-
implementation("com.ucasoft.ktor:ktor-simple-cache:0.51.2")
12+
implementation("com.ucasoft.ktor:ktor-simple-cache:0.53.4")
1313
```
1414
## Usage
1515
```kotlin

ktor-simple-memory-cache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Ktor Simple Memory Cache
22
Memory cache provider for Ktor Simple Cache plugin
33

4-
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-memory-cache/0.51.2?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-memory-cache/0.51.2/jar)
4+
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-memory-cache/0.53.4?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-memory-cache/0.53.4/jar)
55
## Setup
66
### Gradle
77
```kotlin
88
repositories {
99
mavenCentral()
1010
}
1111

12-
implementation("com.ucasoft.ktor:ktor-simple-memory-cache:0.51.2")
12+
implementation("com.ucasoft.ktor:ktor-simple-memory-cache:0.53.4")
1313
```
1414
## Usage
1515
```kotlin

ktor-simple-memory-cache/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ kotlin {
1414
val commonMain by getting {
1515
dependencies {
1616
implementation(project(":ktor-simple-cache"))
17-
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.1")
17+
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.6.2")
1818
}
1919
kotlin.srcDir("src/main/kotlin")
2020
}

ktor-simple-redis-cache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Ktor Simple Redis Cache
22
Redis cache provider for Ktor Simple Cache plugin
33

4-
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-redis-cache/0.51.2?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-redis-cache/0.51.2/jar)
4+
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-redis-cache/0.53.4?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-redis-cache/0.53.4/jar)
55
## Setup
66
### Gradle
77
```kotlin
88
repositories {
99
mavenCentral()
1010
}
1111

12-
implementation("com.ucasoft.ktor:ktor-simple-redis-cache:0.51.2")
12+
implementation("com.ucasoft.ktor:ktor-simple-redis-cache:0.53.4")
1313
```
1414
## Usage
1515
```kotlin

ktor-simple-redis-cache/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ kotlin {
1717
dependencies {
1818
implementation(project(":ktor-simple-cache"))
1919
implementation("redis.clients:jedis:5.1.5")
20-
implementation("com.google.code.gson:gson:2.11.0")
20+
implementation("com.google.code.gson:gson:2.12.1")
2121
}
2222
kotlin.srcDir("src/main/kotlin")
2323
}

settings.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
pluginManagement {
22
resolutionStrategy {
33
plugins {
4-
val kotlinVersion = "2.1.0"
4+
val kotlinVersion = "2.1.10"
55
kotlin("multiplatform") version kotlinVersion apply false
66
kotlin("plugin.serialization") version kotlinVersion apply false
7-
id("org.jetbrains.kotlinx.kover") version "0.9.0" apply false
7+
id("org.jetbrains.kotlinx.kover") version "0.9.1" apply false
88
}
99
}
1010
}

0 commit comments

Comments
 (0)