Skip to content

Commit 2b8e116

Browse files
authored
Merge pull request #290 from Vacxe/prepare-release-1.3.2
technical(release): update version to 1.3.2
2 parents a230d57 + f2ae8af commit 2b8e116

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/workflows/docker_manual.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ on:
77
description: "Docker Version"
88
danger-js-version:
99
description: "Danger JS release version"
10-
default: "11.3.1"
10+
default: "12.3.3"
1111
danger-kotlin-version:
1212
description: "Danger Kotlin release version"
1313
kotlin-version:
1414
description: "Kotlin Version"
15-
default: "1.7.22"
15+
default: "2.0.21"
1616

1717
jobs:
1818
docker-build-push:

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LABEL "com.github.actions.icon"="zap"
88
LABEL "com.github.actions.color"="blue"
99

1010
ARG KOTLINC_VERSION="2.0.21"
11-
ARG DANGER_KOTLIN_VERSION="1.3.1"
11+
ARG DANGER_KOTLIN_VERSION="1.3.2"
1212
ARG DANGER_JS_VERSION="11.3.1"
1313

1414
# Install dependencies

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Current
2-
Version](https://img.shields.io/badge/danger%20kotlin-v1.3.1-orange)](https://danger.systems/kotlin/)
2+
Version](https://img.shields.io/badge/danger%20kotlin-v1.3.2-orange)](https://danger.systems/kotlin/)
33
[![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)
44
[![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://github.com/KotlinBy/awesome-kotlin)
55

@@ -94,7 +94,7 @@ jobs:
9494
steps:
9595
- uses: actions/checkout@v4
9696
- name: Danger
97-
uses: danger/[email protected].1
97+
uses: danger/[email protected].2
9898
env:
9999
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
100100
```
@@ -110,7 +110,7 @@ jobs:
110110
runs-on: ubuntu-latest
111111
name: "Run Danger"
112112
container:
113-
image: docker://ghcr.io/danger/danger-kotlin:1.3.1
113+
image: docker://ghcr.io/danger/danger-kotlin:1.3.2
114114
steps:
115115
- uses: actions/checkout@v4
116116
- name: Run Danger

danger-kotlin-kts/version.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group 'systems.danger'
2-
version '1.3.1'
2+
version '1.3.2'

danger-kotlin-library/version.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group 'systems.danger'
2-
version '1.3.1'
2+
version '1.3.2'

danger-kotlin/src/runnerMain/kotlin/Main.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import systems.danger.cmd.Command
55
import systems.danger.cmd.dangerjs.DangerJS
66

77
const val PROCESS_DANGER_KOTLIN = "danger-kotlin"
8-
const val VERSION = "1.3.1"
8+
const val VERSION = "1.3.2"
99

1010
fun main(args: Array<String>) {
1111
Log.isVerbose = args.contains("--verbose") || (getenv("DEBUG")?.toString()?.isNotEmpty() ?: false)

github-action/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/danger/danger-kotlin:1.3.1
1+
FROM ghcr.io/danger/danger-kotlin:1.3.2
22

33
COPY entrypoint.sh /entrypoint.sh
44

scripts/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
VERSION=1.3.1
3+
VERSION=1.3.2
44

55
while getopts v:h: flag
66
do

0 commit comments

Comments
 (0)