Skip to content

Commit

Permalink
Merge pull request #223 from danger/release_1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
f-meloni committed May 22, 2022
2 parents 1057f6d + 4cf993e commit 82313f8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
-->
## Master

# 1.1.0

- Add support of BitBucketCloud [@vchernyshov] - [#214](https://github.com/danger/kotlin/pull/214)
- Make `force_remove_source_branch` nullable in GitLab Merge request entity [@davidbilik] - [#197](https://github.com/danger/kotlin/pull/197)
- Make `lastReviewedCommit` nullable on BitBucket Server [@f-meloni] - [#211](https://github.com/danger/kotlin/pull/211)
Expand Down
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-orange)](https://danger.systems/kotlin/)
[![Current Version](https://img.shields.io/badge/danger%20kotlin-v1.1.0-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
uses: danger/kotlin@1.1.0
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
uses: docker://ghcr.io/danger/danger-kotlin:1.1.0
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'
version '1.1.0'
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'
version '1.1.0'
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"
const val VERSION = "1.1.0"

fun main(args: Array<String>) {
Log.isVerbose = args.contains("--verbose") || (getenv("DEBUG")?.toString()?.isNotEmpty() ?: false)
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

VERSION=1.0.0
VERSION=1.1.0

while getopts v:h: flag
do
Expand Down

0 comments on commit 82313f8

Please sign in to comment.