Skip to content

Commit

Permalink
Add v1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed Apr 8, 2023
1 parent e542818 commit 825e463
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 20 deletions.
9 changes: 6 additions & 3 deletions config.toml
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.8" #can_be_replaced_with_gradle
version = "v1.9" #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.8" #can_be_replaced_with_gradle
github_branch = "v1.9" #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.8"
version = "v1.9"
url = "https://www.komapper.org/"
[[params.versions]]
version = "v1.8"
url = "https://v1-8.komapper.org/"
[[params.versions]]
version = "v1.7"
url = "https://v1-7.komapper.org/"
[[params.versions]]
Expand Down
6 changes: 3 additions & 3 deletions content/en/docs/Quickstart/_index.md
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.8.10-1.0.9"
kotlin("jvm") version "1.8.10"
id("com.google.devtools.ksp") version "1.8.20-1.0.10"
kotlin("jvm") version "1.8.20"
}

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

dependencies {
val komapperVersion = "1.8.0"
val komapperVersion = "1.9.0"
platform("org.komapper:komapper-platform:$komapperVersion").let {
implementation(it)
ksp(it)
Expand Down
6 changes: 3 additions & 3 deletions content/en/docs/Reference/annotation-processing.md
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.8.10-1.0.9"
kotlin("jvm") version "1.8.10"
id("com.google.devtools.ksp") version "1.8.20-1.0.10"
kotlin("jvm") version "1.8.20"
}

dependencies {
val komapperVersion = "1.8.0"
val komapperVersion = "1.9.0"
ksp("org.komapper:komapper-processor:$komapperVersion")
}
```
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/Reference/gradle-plugin.md
Expand Up @@ -41,7 +41,7 @@ buildscript {

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

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

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

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

```kotlin
plugins {
id("com.google.devtools.ksp") version "1.8.10-1.0.9"
kotlin("jvm") version "1.8.10"
id("com.google.devtools.ksp") version "1.8.20-1.0.10"
kotlin("jvm") version "1.8.20"
}

dependencies {
val komapperVersion = "1.8.0"
val komapperVersion = "1.9.0"
ksp("org.komapper:komapper-processor:$komapperVersion")
}
```
Expand Down
2 changes: 1 addition & 1 deletion content/ja/docs/Reference/gradle-plugin.md
Expand Up @@ -42,7 +42,7 @@ buildscript {

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

// Komapperプラグインに関する設定を行う
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
@@ -1,5 +1,5 @@
encoding=UTF-8
kotlinVersion=1.8.10
kspVersion=1.0.9
komapperVersion=1.8.0
kotlinVersion=1.8.20
kspVersion=1.0.10
komapperVersion=1.9.0

0 comments on commit 825e463

Please sign in to comment.