Skip to content

Commit 9d5642c

Browse files
committed
update version to 0.24.4
1 parent 15c318e commit 9d5642c

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/guide/getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,31 +76,31 @@ Here's an example for those who want to use TextMate grammars for syntax-highlig
7676

7777
```Kotlin{2-4} [Kotlin DSL]
7878
dependencies {
79-
implementation(platform("io.github.rosemoe:editor-bom:0.24.1"))
79+
implementation(platform("io.github.rosemoe:editor-bom:0.24.4"))
8080
implementation("io.github.rosemoe:editor")
8181
implementation("io.github.rosemoe:language-textmate")
8282
}
8383
```
8484

8585
```Groovy{2-4} [Groovy DSL]
8686
dependencies {
87-
implementation(platform("io.github.rosemoe:editor-bom:0.24.1"))
87+
implementation(platform("io.github.rosemoe:editor-bom:0.24.4"))
8888
implementation 'io.github.rosemoe:editor'
8989
implementation 'io.github.rosemoe:language-textmate'
9090
}
9191
```
9292

9393
```Kotlin{2-4} [Kotlin DSL without bom]
9494
dependencies {
95-
val editorVersion = "0.24.1"
95+
val editorVersion = "0.24.4"
9696
implementation("io.github.rosemoe:editor:$editorVersion")
9797
implementation("io.github.rosemoe:language-textmate:$editorVersion")
9898
}
9999
```
100100

101101
```Groovy{2-4} [Groovy DSL without bom]
102102
dependencies {
103-
def editorVersion = '0.24.1'
103+
def editorVersion = '0.24.4'
104104
implementation 'io.github.rosemoe:editor:$editorVersion'
105105
implementation 'io.github.rosemoe:language-textmate:$editorVersion'
106106
}
@@ -138,7 +138,7 @@ Generally, it is recommended to use [released versions](https://github.com/Rosem
138138
Snapshot versions are automatically published on repository push. You may combine current released version name
139139
and `-SNAPSHOT` to make a snapshot version name.
140140

141-
For example, if the latest released version name is `0.24.1`, you may use version name `0.24.1-SNAPSHOT` to import the snapshot version to your project.
141+
For example, if the latest released version name is `0.24.4`, you may use version name `0.24.4-SNAPSHOT` to import the snapshot version to your project.
142142

143143
Note that adding extra maven repository is required:
144144
```Kotlin{3}

docs/zh/guide/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,31 +76,31 @@ dependencies {
7676

7777
```Kotlin{2-4} [Kotlin DSL]
7878
dependencies {
79-
implementation(platform("io.github.rosemoe:editor-bom:0.24.1"))
79+
implementation(platform("io.github.rosemoe:editor-bom:0.24.4"))
8080
implementation("io.github.rosemoe:editor")
8181
implementation("io.github.rosemoe:language-textmate")
8282
}
8383
```
8484

8585
```Groovy{2-4} [Groovy DSL]
8686
dependencies {
87-
implementation(platform("io.github.rosemoe:editor-bom:0.24.1"))
87+
implementation(platform("io.github.rosemoe:editor-bom:0.24.4"))
8888
implementation 'io.github.rosemoe:editor'
8989
implementation 'io.github.rosemoe:language-textmate'
9090
}
9191
```
9292

9393
```Kotlin{2-4} [Kotlin DSL(不使用bom)]
9494
dependencies {
95-
val editorVersion = "0.24.1"
95+
val editorVersion = "0.24.4"
9696
implementation("io.github.rosemoe:editor:$editorVersion")
9797
implementation("io.github.rosemoe:language-textmate:$editorVersion")
9898
}
9999
```
100100

101101
```Groovy{2-4} [Groovy DSL(不使用bom)]
102102
dependencies {
103-
def editorVersion = '0.24.1'
103+
def editorVersion = '0.24.4'
104104
implementation 'io.github.rosemoe:editor:$editorVersion'
105105
implementation 'io.github.rosemoe:language-textmate:$editorVersion'
106106
}

0 commit comments

Comments
 (0)