Skip to content

Commit 6d32b64

Browse files
authored
Feature/update 5 (#30)
* Update Gradle * Update Kotlin * Update Ktor * Update version
1 parent c5bbb8a commit 6d32b64

10 files changed

Lines changed: 24 additions & 33 deletions

File tree

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 = "9.4.1"
2+
gradleVersion = "9.5.1"
33
}
44

55
allprojects {
66

77
group = "com.ucasoft.ktor"
88

9-
version = "0.70.2"
9+
version = "0.72.1"
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.4.2"
3+
const val ktorVersion = "3.4.3"
44
const val kotestVersion = "6.1.11"
55

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

gradle/wrapper/gradle-wrapper.jar

-504 Bytes
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.5.1-bin.zip
44
networkTimeout=10000
5+
retries=0
6+
retryBackOffMs=500
57
validateDistributionUrl=true
68
zipStoreBase=GRADLE_USER_HOME
79
zipStorePath=wrapper/dists

gradlew

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 10 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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

12-
implementation("com.ucasoft.ktor:ktor-simple-cache:0.70.2")
12+
implementation("com.ucasoft.ktor:ktor-simple-cache:0.72.1")
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.70.2?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-memory-cache/0.70.2/jar)
4+
[![Maven Central with version prefix filter](https://img.shields.io/maven-central/v/com.ucasoft.ktor/ktor-simple-memory-cache/0.72.1?color=blue)](https://search.maven.org/artifact/com.ucasoft.ktor/ktor-simple-memory-cache/0.72.1/jar)
55
## Setup
66
### Gradle
77
```kotlin
88
repositories {
99
mavenCentral()
1010
}
1111

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

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

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

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pluginManagement {
22
resolutionStrategy {
33
plugins {
4-
val kotlinVersion = "2.3.20"
4+
val kotlinVersion = "2.3.21"
55
kotlin("multiplatform") version kotlinVersion apply false
66
kotlin("plugin.serialization") version kotlinVersion apply false
77
id("org.jetbrains.kotlinx.kover") version "0.9.8" apply false

0 commit comments

Comments
 (0)