diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a05ec45..e52b9f9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,8 @@ --> ## Master +# 1.0.0-beta3 + - Coroutines compatibility [@gianluz] - [#177](https://github.com/danger/kotlin/pull/177) - Improving error message for when a DangerPlugin was not registered [@rojanthomas] - [#181](https://github.com/danger/kotlin/pull/181) - Fix body parameter in github models [@tegorov] - [#175](https://github.com/danger/kotlin/pull/175) @@ -73,4 +75,4 @@ [@uzzu]: https://github.com/uzzu [@mariusgreve]: https://github.com/mariusgreve [@tegorov]: https://github.com/tegorov -[@rojanthomas]: https://github.com/rojanthomas \ No newline at end of file +[@rojanthomas]: https://github.com/rojanthomas diff --git a/README.md b/README.md index e61b862d..31ef6e29 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Current Version](https://img.shields.io/badge/danger%20kotlin-v1.0.0(beta2)-orange)](https://danger.systems/kotlin/) +[![Current Version](https://img.shields.io/badge/danger%20kotlin-v1.0.0(beta3)-orange)](https://danger.systems/kotlin/) [![Maven Central - SDK](https://img.shields.io/maven-central/v/systems.danger/danger-kotlin-sdk.svg?label=danger-kotlin-sdk)](https://search.maven.org/search?q=g:%22systems.danger%22%20AND%20a:%22danger-kotlin-sdk%22) [![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin) @@ -82,7 +82,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Danger - uses: danger/kotlin@1.0.0-beta.2 + uses: danger/kotlin@1.0.0-beta.3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} ``` @@ -100,7 +100,7 @@ jobs: steps: - uses: actions/checkout@v1 - name: Danger - uses: docker://ghcr.io/danger/danger-kotlin:1.0.0-beta.2 + uses: docker://ghcr.io/danger/danger-kotlin:1.0.0-beta.3 with: args: --failOnErrors --no-publish-check env: diff --git a/danger-kotlin-kts/version.gradle b/danger-kotlin-kts/version.gradle index e5c4902a..87ef4ae0 100644 --- a/danger-kotlin-kts/version.gradle +++ b/danger-kotlin-kts/version.gradle @@ -1,2 +1,2 @@ group 'systems.danger' -version '1.0.0-beta2' +version '1.0.0-beta3' diff --git a/danger-kotlin-library/version.gradle b/danger-kotlin-library/version.gradle index e5c4902a..87ef4ae0 100644 --- a/danger-kotlin-library/version.gradle +++ b/danger-kotlin-library/version.gradle @@ -1,2 +1,2 @@ group 'systems.danger' -version '1.0.0-beta2' +version '1.0.0-beta3' diff --git a/danger-kotlin/src/runnerMain/kotlin/Main.kt b/danger-kotlin/src/runnerMain/kotlin/Main.kt index 115804bf..6cd78195 100644 --- a/danger-kotlin/src/runnerMain/kotlin/Main.kt +++ b/danger-kotlin/src/runnerMain/kotlin/Main.kt @@ -5,7 +5,7 @@ import systems.danger.cmd.Command import systems.danger.cmd.dangerjs.DangerJS const val PROCESS_DANGER_KOTLIN = "danger-kotlin" -const val VERSION = "1.0.0-beta2" +const val VERSION = "1.0.0-beta3" fun main(args: Array) { Log.isVerbose = args.contains("--verbose") || (getenv("DEBUG")?.toString()?.isNotEmpty() ?: false)