Skip to content

Commit 71df971

Browse files
committed
Merge branch 'release/2.0.1.0'
2 parents 8a42938 + 18d4409 commit 71df971

File tree

9 files changed

+32
-19
lines changed

9 files changed

+32
-19
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,11 @@ updates:
55
schedule:
66
interval: daily
77
open-pull-requests-limit: 10
8+
labels:
9+
- "dependencies"
10+
- package-ecosystem: "github-actions"
11+
directory: "/"
12+
schedule:
13+
interval: "daily"
14+
labels:
15+
- "dependencies"

.github/release-notes.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
changelog:
22
sections:
33
- title: ":rocket: Enhancements & Features"
4-
labels: [ "Type: enhancement", "Type: documentation", "Type: example" ]
4+
labels: [ "enhancement", "documentation", "example" ]
55
- title: ":bug: Bug Fixes"
6-
labels: [ "Type: bug" ]
6+
labels: [ "bug" ]
77
- title: ":hammer_and_wrench: Chore"
8-
labels: [ "Type: dependencies" ]
8+
labels: [ "dependencies" ]
99
issues:
1010
exclude:
11-
labels: [ "Type: Incorrect Repository", "Type: question" ]
11+
labels: [ "question" ]
1212
contributors:
1313
exclude:
1414
names: [ "dependabot[bot]", "codacy-badger" ]

.github/workflows/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@v1
18+
uses: actions/checkout@v4
1919

2020
- name: Cache .m2
21-
uses: actions/cache@v1
21+
uses: actions/cache@v4
2222
with:
2323
path: ~/.m2/repository
2424
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v1
15+
uses: actions/checkout@v4
1616

1717
- name: Cache .m2
18-
uses: actions/cache@v1
18+
uses: actions/cache@v4
1919
with:
2020
path: ~/.m2/repository
2121
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Extensions that make working with the JVM BDD testing tool [jgiven](https://jgiv
66
[![Build Status](https://github.com/toolisticon/jgiven-kotlin/workflows/Development%20branches/badge.svg)](https://github.com/toolisticon/jgiven-kotlin/actions)
77
[![sponsored](https://img.shields.io/badge/sponsoredBy-Holisticon-red.svg)](https://holisticon.de/)
88
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.toolisticon.testing/jgiven-kotlin/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.toolisticon.testing/jgiven-kotlin)
9+
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Ftoolisticon%2Fjgiven-kotlin.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Ftoolisticon%2Fjgiven-kotlin?ref=badge_shield)
910

1011
## Usage
1112

@@ -131,3 +132,7 @@ allOpen {
131132
* These helpers where moved from [jgiven-addons](https://github.com/toolisticon/jgiven-addons) for better separation of concerns and
132133
simplified publishing.
133134
* This extension might become obsolete once jgiven [supports this officially](https://github.com/TNG/JGiven/pull/407).
135+
136+
137+
## License
138+
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Ftoolisticon%2Fjgiven-kotlin.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Ftoolisticon%2Fjgiven-kotlin?ref=badge_large)

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.toolisticon.testing</groupId>
77
<artifactId>jgiven-kotlin-parent</artifactId>
8-
<version>1.3.1.0</version>
8+
<version>2.0.1.0</version>
99
</parent>
1010

1111
<artifactId>jgiven-kotlin</artifactId>
@@ -47,7 +47,7 @@
4747
<dependency>
4848
<groupId>ch.qos.logback</groupId>
4949
<artifactId>logback-classic</artifactId>
50-
<version>1.4.14</version>
50+
<version>1.5.16</version>
5151
<scope>test</scope>
5252
</dependency>
5353
</dependencies>

junit5/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.toolisticon.testing</groupId>
77
<artifactId>jgiven-kotlin-parent</artifactId>
8-
<version>1.3.1.0</version>
8+
<version>2.0.1.0</version>
99
</parent>
1010

1111
<name>JGiven Kotlin - JUnit5</name>
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>ch.qos.logback</groupId>
4747
<artifactId>logback-classic</artifactId>
48-
<version>1.4.14</version>
48+
<version>1.5.16</version>
4949
<scope>test</scope>
5050
</dependency>
5151
</dependencies>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<parent>
66
<groupId>io.toolisticon.maven.parent</groupId>
77
<artifactId>maven-parent-kotlin-base</artifactId>
8-
<version>2024.1.0</version>
8+
<version>2024.12.2</version>
99
<relativePath/>
1010
</parent>
1111

1212
<groupId>io.toolisticon.testing</groupId>
1313
<artifactId>jgiven-kotlin-parent</artifactId>
14-
<version>1.3.1.0</version>
14+
<version>2.0.1.0</version>
1515

1616
<name>JGiven Kotlin - Parent</name>
1717
<description>jgiven kotlin extension - parent</description>
@@ -27,10 +27,10 @@
2727

2828
<properties>
2929
<kotlin.compiler.incremental>true</kotlin.compiler.incremental>
30-
<jgiven.version>1.3.1</jgiven.version>
30+
<jgiven.version>2.0.1</jgiven.version>
3131

3232
<!-- TEST -->
33-
<assertj.version>3.25.2</assertj.version>
33+
<assertj.version>3.27.2</assertj.version>
3434
</properties>
3535

3636
<dependencyManagement>
@@ -64,7 +64,7 @@
6464
<plugin>
6565
<groupId>org.jetbrains.dokka</groupId>
6666
<artifactId>dokka-maven-plugin</artifactId>
67-
<version>1.9.10</version>
67+
<version>2.0.0</version>
6868
<executions>
6969
<execution>
7070
<id>attach-javadocs</id>

spring-junit5/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.toolisticon.testing</groupId>
77
<artifactId>jgiven-kotlin-parent</artifactId>
8-
<version>1.3.1.0</version>
8+
<version>2.0.1.0</version>
99
</parent>
1010

1111
<name>JGiven Kotlin - Spring-JUnit5</name>
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>ch.qos.logback</groupId>
4747
<artifactId>logback-classic</artifactId>
48-
<version>1.4.14</version>
48+
<version>1.5.16</version>
4949
<scope>test</scope>
5050
</dependency>
5151
</dependencies>

0 commit comments

Comments
 (0)