Skip to content

Commit 92d2ac8

Browse files
authored
Merge pull request #299 from Vacxe/prepare-release-133
feat(release): prepare release 1.3.3
2 parents 18747b0 + e2b600b commit 92d2ac8

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Diff for: 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.2"
11+
ARG DANGER_KOTLIN_VERSION="1.3.3"
1212
ARG DANGER_JS_VERSION="12.3.3"
1313

1414
# Install dependencies

Diff for: 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.2-orange)](https://danger.systems/kotlin/)
2+
Version](https://img.shields.io/badge/danger%20kotlin-v1.3.3-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].2
97+
uses: danger/[email protected].3
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.2
113+
image: docker://ghcr.io/danger/danger-kotlin:1.3.3
114114
steps:
115115
- uses: actions/checkout@v4
116116
- name: Run Danger

Diff for: 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.2'
2+
version '1.3.3'

Diff for: 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.2'
2+
version '1.3.3'

Diff for: 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.2"
8+
const val VERSION = "1.3.3"
99

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

Diff for: 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.2
1+
FROM ghcr.io/danger/danger-kotlin:1.3.3
22

33
COPY entrypoint.sh /entrypoint.sh
44

Diff for: 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.2
3+
VERSION=1.3.3
44

55
while getopts v:h: flag
66
do

0 commit comments

Comments
 (0)