Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed Apr 23, 2022
1 parent a58e3cf commit b9de2e6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions content/en/docs/Quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ Include the following code in your build.gradle.kts:
```kotlin
plugins {
application
id("com.google.devtools.ksp") version "1.6.20-1.0.5"
kotlin("jvm") version "1.6.20"
id("com.google.devtools.ksp") version "1.6.21-1.0.5"
kotlin("jvm") version "1.6.21"
}

application {
mainClass.set("org.komapper.quickstart.ApplicationKt")
}

dependencies {
val komapperVersion = "0.32.0"
val komapperVersion = "0.33.0"
implementation("org.komapper:komapper-starter-jdbc:$komapperVersion")
implementation("org.komapper:komapper-dialect-h2-jdbc:$komapperVersion")
ksp("org.komapper:komapper-processor:$komapperVersion")
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/Reference/gradle-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ buildscript {

// Declare the use of the Komapper plugin
plugins {
id("org.komapper.gradle") version "0.32.0"
id("org.komapper.gradle") version "0.33.0"
}

// Configure settings related to the Komapper plugin
Expand Down
6 changes: 3 additions & 3 deletions content/ja/docs/Quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ JDKとGradleをインストールしてください。
```kotlin
plugins {
application
id("com.google.devtools.ksp") version "1.6.20-1.0.5"
kotlin("jvm") version "1.6.20"
id("com.google.devtools.ksp") version "1.6.21-1.0.5"
kotlin("jvm") version "1.6.21"
}

application {
mainClass.set("org.komapper.quickstart.ApplicationKt")
}

dependencies {
val komapperVersion = "0.32.0"
val komapperVersion = "0.33.0"
implementation("org.komapper:komapper-starter-jdbc:$komapperVersion")
implementation("org.komapper:komapper-dialect-h2-jdbc:$komapperVersion")
ksp("org.komapper:komapper-processor:$komapperVersion")
Expand Down
2 changes: 1 addition & 1 deletion content/ja/docs/Reference/gradle-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ buildscript {

// Komapperプラグインの利用を宣言する
plugins {
id("org.komapper.gradle") version "0.32.0"
id("org.komapper.gradle") version "0.33.0"
}

// Komapperプラグインに関する設定を行う
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
encoding=UTF-8
kotlinVersion=1.6.20
kspVersion=1.6.20-1.0.5
komapperVersion=0.32.0
kotlinVersion=1.6.21
kspVersion=1.6.21-1.0.5
komapperVersion=0.33.0

0 comments on commit b9de2e6

Please sign in to comment.