Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

1.0.0-beta3 #184

Merged
merged 3 commits into from
Sep 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -73,4 +75,4 @@
[@uzzu]: https://github.com/uzzu
[@mariusgreve]: https://github.com/mariusgreve
[@tegorov]: https://github.com/tegorov
[@rojanthomas]: https://github.com/rojanthomas
[@rojanthomas]: https://github.com/rojanthomas
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down Expand Up @@ -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 }}
```
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion danger-kotlin-kts/version.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group 'systems.danger'
version '1.0.0-beta2'
version '1.0.0-beta3'
2 changes: 1 addition & 1 deletion danger-kotlin-library/version.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group 'systems.danger'
version '1.0.0-beta2'
version '1.0.0-beta3'
2 changes: 1 addition & 1 deletion danger-kotlin/src/runnerMain/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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<String>) {
Log.isVerbose = args.contains("--verbose") || (getenv("DEBUG")?.toString()?.isNotEmpty() ?: false)
Expand Down