Skip to content

Commit efc431f

Browse files
authored
Update (#27)
* Update Kotlin * Update Gradle * Update Plugins * Update Libraries * Update Actions * Update Version
1 parent 432e115 commit efc431f

13 files changed

Lines changed: 20 additions & 24 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
shell: bash
3333

3434
- name: "Tests Report"
35-
uses: dorny/test-reporter@ee446707ff3bdadb3c039ff1af4286a09acb79c6
35+
uses: dorny/test-reporter@v2
3636
if: success() || failure()
3737
with:
3838
name: jUnit Tests
@@ -45,7 +45,7 @@ jobs:
4545
shell: bash
4646

4747
- name: "Coverage Report"
48-
uses: mi-kas/kover-report@624c610e0c054a270ce07a40972c643261c513bb
48+
uses: mi-kas/kover-report@v1
4949
if: ${{ github.event_name == 'pull_request' }}
5050
with:
5151
path: |

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.2.1"
2+
gradleVersion = "9.3.1"
33
}
44

55
allprojects {
66

77
group = "com.ucasoft.ktor"
88

9-
version = "0.57.7"
9+
version = "0.59.4"
1010

1111
repositories {
1212
mavenCentral()

buildSrc/src/main/kotlin/Dependensies.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import org.gradle.api.Project
22

3-
const val ktorVersion = "3.3.3"
4-
const val kotestVersion = "6.0.7"
3+
const val ktorVersion = "3.4.0"
4+
const val kotestVersion = "6.1.4"
55

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

gradle/wrapper/gradle-wrapper.jar

2.35 KB
Binary file not shown.

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-9.2.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

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

gradlew.bat

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

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

ktor-simple-cache/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ kotlin {
2727
implementation(ktorServer("test-host"))
2828
implementation(kotest("assertions-core"))
2929
implementation(kotest("assertions-ktor"))
30-
implementation("org.mockito.kotlin:mockito-kotlin:6.1.0")
30+
implementation("org.mockito.kotlin:mockito-kotlin:6.2.3")
3131
}
3232
kotlin.srcDir("src/test/kotlin")
3333
}

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

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

0 commit comments

Comments
 (0)