File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
docs/contributing/submitting-prs Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -213,18 +213,18 @@ fun CliUi.runReleaseStep(step: ReleaseStep): Unit = when (step) {
213
213
printInfo(" Congratulations for this new stable release!" )
214
214
printInfo(" Let's update the library for next development version." )
215
215
runUntilSuccessWithErrorPrintingOrCancel {
216
- printInfo(" Enter the name of the next target version (`-LOCAL- SNAPSHOT` will be added automatically)" )
216
+ printInfo(" Enter the name of the next target version (`-SNAPSHOT` will be added automatically)" )
217
217
val input = readLine()
218
218
input.checkIsValidVersionString()
219
219
when (Version (input).stabilityLevel()) {
220
220
StabilityLevel .Unknown , StabilityLevel .Stable -> Unit
221
221
else -> error(" You need to enter a stable target version" )
222
222
}
223
- " $input -LOCAL- SNAPSHOT"
223
+ " $input -SNAPSHOT"
224
224
}
225
225
} else OngoingRelease .versionBeforeRelease.let {
226
- if (it.endsWith(" -LOCAL- SNAPSHOT" )) it
227
- else " ${it.substringBefore(" -dev-" )} -LOCAL- SNAPSHOT"
226
+ if (it.endsWith(" -SNAPSHOT" )) it
227
+ else " ${it.substringBefore(" -dev-" )} -SNAPSHOT"
228
228
}
229
229
versionsFile.writeText(nextDevVersion)
230
230
printInfo(" ${versionsFile.path} has been edited with next development version ($nextDevVersion )." )
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ We recommend using the most recent version of IntelliJ IDEA to contribute to thi
28
28
29
29
This step is required for the samples to work afterwards and enable you to test your changes.
30
30
31
- 1 . Ensure the version in the ` plugins/version.txt ` file ends with ` -LOCAL- SNAPSHOT ` to avoid overlapping a published version.
31
+ 1 . Ensure the version in the ` plugins/version.txt ` file ends with ` -SNAPSHOT ` to avoid overlapping a published version.
32
32
2 . In the "Gradle" tool window, or from the terminal, run the ` publishToMavenLocal ` task.
33
33
34
34
### Testing changes locally
@@ -63,4 +63,4 @@ pluginManagement {
63
63
}
64
64
```
65
65
66
- Once you're done, you can replace the version with the local snapshot version (e.g. ` 0.9.8 ` -> ` 0.9.9-LOCAL -SNAPSHOT ` ) and test your changes.
66
+ Once you're done, you can replace the version with the snapshot version (e.g. ` 0.9.8 ` -> ` 0.9.9-SNAPSHOT ` ) and test your changes.
Original file line number Diff line number Diff line change 1
- 0.10.1-LOCAL- SNAPSHOT
1
+ 0.10.1-SNAPSHOT
You can’t perform that action at this time.
0 commit comments