Skip to content

Commit

Permalink
Add v1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed Sep 16, 2023
1 parent 6e4d90a commit 6d68c5b
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 15 deletions.
9 changes: 6 additions & 3 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ archived_version = false #can_be_replaced_with_gradle
# The version number for the version of the docs represented in this doc set.
# Used in the "version-banner" partial to display a version number for the
# current doc set.
version = "v1.12" #can_be_replaced_with_gradle
version = "v1.13" #can_be_replaced_with_gradle

# A link to latest version of the docs. Used in the "version-banner" partial to
# point people to the main doc site.
Expand All @@ -113,7 +113,7 @@ github_project_repo = "https://github.com/komapper/komapper"

# Uncomment this if you have a newer GitHub repo with "main" as the default branch,
# or specify a new value if you want to reference another branch in your GitHub links
github_branch = "v1.12" #can_be_replaced_with_gradle
github_branch = "v1.13" #can_be_replaced_with_gradle

# Google Custom Search Engine ID. Remove or comment out to disable search.
# gcs_engine_id = "c4b340a784facde3d"
Expand All @@ -132,9 +132,12 @@ prism_syntax_highlighting = false
#version = "latest"
#url = "https://www.komapper.org/"
[[params.versions]]
version = "v1.12"
version = "v1.13"
url = "https://www.komapper.org/"
[[params.versions]]
version = "v1.12"
url = "https://v1-12.komapper.org/"
[[params.versions]]
version = "v1.11"
url = "https://v1-11.komapper.org/"
[[params.versions]]
Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/Quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Include the following code in your build.gradle.kts:
```kotlin
plugins {
application
id("com.google.devtools.ksp") version "1.9.0-1.0.11"
id("com.google.devtools.ksp") version "1.9.0-1.0.13"
kotlin("jvm") version "1.9.0"
}

Expand All @@ -43,7 +43,7 @@ application {
}

dependencies {
val komapperVersion = "1.12.0"
val komapperVersion = "1.13.0"
platform("org.komapper:komapper-platform:$komapperVersion").let {
implementation(it)
ksp(it)
Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/Reference/annotation-processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ To run KSP, you need to configure your Gradle build script as follows:

```kotlin
plugins {
id("com.google.devtools.ksp") version "1.9.0-1.0.11"
id("com.google.devtools.ksp") version "1.9.0-1.0.13"
kotlin("jvm") version "1.9.0"
}

dependencies {
val komapperVersion = "1.12.0"
val komapperVersion = "1.13.0"
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 "1.12.0"
id("org.komapper.gradle") version "1.13.0"
}

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

Expand All @@ -43,7 +43,7 @@ application {
}

dependencies {
val komapperVersion = "1.12.0"
val komapperVersion = "1.13.0"
platform("org.komapper:komapper-platform:$komapperVersion").let {
implementation(it)
ksp(it)
Expand Down
4 changes: 2 additions & 2 deletions content/ja/docs/Reference/annotation-processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ KSPを実行するためには、Gradleビルドスクリプトを次のよう

```kotlin
plugins {
id("com.google.devtools.ksp") version "1.9.0-1.0.11"
id("com.google.devtools.ksp") version "1.9.0-1.0.13"
kotlin("jvm") version "1.9.0"
}

dependencies {
val komapperVersion = "1.12.0"
val komapperVersion = "1.13.0"
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 "1.12.0"
id("org.komapper.gradle") version "1.13.0"
}

// Komapperプラグインに関する設定を行う
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
encoding=UTF-8
kotlinVersion=1.9.0
kspVersion=1.0.11
komapperVersion=1.12.0
kspVersion=1.0.13
komapperVersion=1.13.0

0 comments on commit 6d68c5b

Please sign in to comment.