Skip to content

Commit

Permalink
Merge pull request #31 from turchenkoalex/upgrade-kotlin-1.9.0
Browse files Browse the repository at this point in the history
Upgrade kotlin 1.9.0
  • Loading branch information
turchenkoalex authored Aug 15, 2023
2 parents bc93adb + fd065be commit 77dda5f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ repositories {
}
dependencies {
implementation("com.ecwid.upsource-rpc:client:0.9.20")
implementation("com.ecwid.upsource-rpc:client:0.9.21")
// use one of:
implementation("com.ecwid.upsource-rpc:gson-serializer:0.9.20")
implementation("com.ecwid.upsource-rpc:jackson-serializer:0.9.20")
implementation("com.ecwid.upsource-rpc:gson-serializer:0.9.21")
implementation("com.ecwid.upsource-rpc:jackson-serializer:0.9.21")
// use one of:
implementation("com.ecwid.upsource-rpc:httpclient:0.9.20")
implementation("com.ecwid.upsource-rpc:apache-httpclient:0.9.20")
implementation("com.ecwid.upsource-rpc:httpclient:0.9.21")
implementation("com.ecwid.upsource-rpc:apache-httpclient:0.9.21")
}
```

Expand Down Expand Up @@ -195,7 +195,7 @@ repositories {
}
dependencies {
implementation("com.ecwid.upsource-rpc:webhooks:0.9.20")
implementation("com.ecwid.upsource-rpc:webhooks:0.9.21")
}
```

Expand Down Expand Up @@ -252,7 +252,7 @@ when (webhook) {

| Client | Upsource |
|-----------------|:-----------:|
| 0.9.15 - 0.9.20 | 2020.1.1883 |
| 0.9.15 - 0.9.21 | 2020.1.1883 |
| | 2020.1.1836 |
| 0.9.14 | 2020.1.1836 |
| 0.9.13 | 2020.1.1836 |
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

subprojects {
group = "com.ecwid.upsource-rpc"
version = "0.9.20"
version = "0.9.21"

repositories {
mavenCentral()
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/com/ecwid/gradle/Dependencies.kt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package com.ecwid.gradle

object Versions {
const val kotlin = "1.8.21"
const val junit = "5.9.3"
const val kotlin = "1.9.0"
const val junit = "5.10.0"
const val apacheHttpClient = "4.5.14"
const val gson = "2.10.1"
const val jackson = "2.15.2"
const val commonsCli = "1.5.0"
const val freemarker = "2.3.32"
const val mockk = "1.13.5"
const val mockk = "1.13.7"
}

object Dependencies {
Expand Down

0 comments on commit 77dda5f

Please sign in to comment.