Skip to content

Commit

Permalink
Add v1.14
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamura-to committed Oct 9, 2023
1 parent daef7e0 commit a070035
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 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.13" #can_be_replaced_with_gradle
version = "v1.14" #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.13" #can_be_replaced_with_gradle
github_branch = "v1.14" #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.13"
version = "v1.14"
url = "https://www.komapper.org/"
[[params.versions]]
version = "v1.13"
url = "https://v1-13.komapper.org/"
[[params.versions]]
version = "v1.12"
url = "https://v1-12.komapper.org/"
[[params.versions]]
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/Quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ application {
}

dependencies {
val komapperVersion = "1.13.0"
val komapperVersion = "1.14.0"
platform("org.komapper:komapper-platform:$komapperVersion").let {
implementation(it)
ksp(it)
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/Reference/annotation-processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

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

// Configure settings related to the Komapper plugin
Expand Down
2 changes: 1 addition & 1 deletion content/ja/docs/Quickstart/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ application {
}

dependencies {
val komapperVersion = "1.13.0"
val komapperVersion = "1.14.0"
platform("org.komapper:komapper-platform:$komapperVersion").let {
implementation(it)
ksp(it)
Expand Down
2 changes: 1 addition & 1 deletion content/ja/docs/Reference/annotation-processing.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

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

// Komapperプラグインに関する設定を行う
Expand Down
2 changes: 1 addition & 1 deletion 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.13
komapperVersion=1.13.0
komapperVersion=1.14.0

0 comments on commit a070035

Please sign in to comment.