Skip to content

Commit 85737e0

Browse files
Update to 0.3.6 (#103)
1 parent d14620d commit 85737e0

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.3.6 ##
2+
3+
* Support using `parse(args)` in `fun main(vararg args: String)` ([GH-95](https://github.com/Kotlin/kotlinx-cli/pull/95))
4+
* Update Kotlin to 1.9.10 ([GH-102](https://github.com/Kotlin/kotlinx-cli/pull/102))
5+
16
## 0.3.5 ##
27

38
* Fix typo in GNU option message ([GH-75](https://github.com/Kotlin/kotlinx-cli/pull/75))

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ kotlin {
4040
sourceSets {
4141
commonMain {
4242
dependencies {
43-
implementation("org.jetbrains.kotlinx:kotlinx-cli:0.3.5")
43+
implementation("org.jetbrains.kotlinx:kotlinx-cli:0.3.6")
4444
}
4545
}
4646
}
@@ -55,7 +55,7 @@ In Kotlin projects, add the following dependency to the `dependencies` element o
5555
<dependency>
5656
<groupId>org.jetbrains.kotlinx</groupId>
5757
<artifactId>kotlinx-cli-jvm</artifactId>
58-
<version>0.3.5</version>
58+
<version>0.3.6</version>
5959
</dependency>
6060
```
6161
## Command line entities

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group = org.jetbrains.kotlinx
2-
version = 0.3.5
2+
version = 0.3.6
33
versionSuffix=SNAPSHOT
44
kotlin.code.style=official
55

0 commit comments

Comments
 (0)