Skip to content

Commit cceb969

Browse files
committed
v2.0.0-RC-2 rename combine to cartesian/zip, more generator factories
1 parent cdf1849 commit cceb969

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Following a few guidelines so that others can quickly benefit from your contribu
1212

1313
## Code of Conduct
1414
This project and everyone participating in it is governed by Minimalist's
15-
[Code of Conduct](https://github.com/tegonal/minimalist/tree/v2.0.0-RC-1/.github/CODE_OF_CONDUCT.md).
15+
[Code of Conduct](https://github.com/tegonal/minimalist/tree/v2.0.0-RC-2/.github/CODE_OF_CONDUCT.md).
1616
By participating, you are expected to uphold this code. Please report unacceptable behaviour to info@tutteli.ch
1717

1818
## How to Contribute

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<!-- for main -->
22
<!--
3-
[![Download](https://img.shields.io/badge/Download-v2.0.0--RC--1-%23007ec6)](https://central.sonatype.com/artifact/com.tegonal.minimalist/minimalist/2.0.0-RC-1)
3+
[![Download](https://img.shields.io/badge/Download-v2.0.0--RC--2-%23007ec6)](https://central.sonatype.com/artifact/com.tegonal.minimalist/minimalist/2.0.0-RC-2)
44
[![EUPL 1.2](https://img.shields.io/badge/%E2%9A%96-EUPL%201.2-%230b45a6)](https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12 "License")
55
[![Quality Assurance](https://github.com/tegonal/minimalist/actions/workflows/quality-assurance.yml/badge.svg?event=push&branch=main)](https://github.com/tegonal/minimalist/actions/workflows/quality-assurance.yml?query=branch%3Amain)
66
[![Newcomers Welcome](https://img.shields.io/badge/%F0%9F%91%8B-Newcomers%20Welcome-blueviolet)](https://github.com/tegonal/minimalist/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22 "Ask in discussions for help")
77
-->
88
<!-- for main end -->
99
<!-- for release -->
1010

11-
[![Download](https://img.shields.io/badge/Download-v2.0.0--RC--1-%23007ec6)](https://central.sonatype.com/artifact/com.tegonal.minimalist/minimalist/2.0.0-RC-1)
11+
[![Download](https://img.shields.io/badge/Download-v2.0.0--RC--2-%23007ec6)](https://central.sonatype.com/artifact/com.tegonal.minimalist/minimalist/2.0.0-RC-2)
1212
[![EUPL](https://img.shields.io/badge/%E2%9A%96-EUPL%201.2-%230b45a6)](https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12 "License")
1313
[![Newcomers Welcome](https://img.shields.io/badge/%F0%9F%91%8B-Newcomers%20Welcome-blueviolet)](https://github.com/tegonal/minimalist/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22 "Ask in discussions for help")
1414

@@ -29,7 +29,7 @@ Take a look at [Examples](#examples) to see how you can use it.
2929
❗ You are taking a *sneak peek* at the next version. It could be that some features you find on this page are not
3030
released yet.
3131
Please have a look at the README of the corresponding release/git tag. Latest
32-
version: [README of v2.0.0-RC-1](https://github.com/tegonal/minimalist/tree/v2.0.0-RC-1/README.md).
32+
version: [README of v2.0.0-RC-2](https://github.com/tegonal/minimalist/tree/v2.0.0-RC-2/README.md).
3333

3434
---
3535

@@ -66,7 +66,7 @@ repositories {
6666
mavenCentral()
6767
}
6868
dependencies {
69-
testImplementation("com.tegonal.minimalist:minimalist:2.0.0-RC-1")
69+
testImplementation("com.tegonal.minimalist:minimalist:2.0.0-RC-2")
7070
}
7171
```
7272

@@ -670,7 +670,7 @@ See `MinimalistConfig.testProfiles` for what `maxArgs` are defined per default.
670670

671671
# Code Documentation
672672

673-
Code documentation can be found on github-pages: <https://tegonal.github.io/minimalist/2.0.0-RC-1/kdoc>.
673+
Code documentation can be found on github-pages: <https://tegonal.github.io/minimalist/2.0.0-RC-2/kdoc>.
674674

675675
# License
676676

build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
id("me.champeau.jmh") version "0.7.3"
88
}
99

10-
version = "2.0.0-RC-1"
10+
version = "2.0.0-RC-2"
1111
group = "com.tegonal.minimalist"
1212
description = "Library which helps to setup and prioritise parameterized tests"
1313

@@ -82,8 +82,8 @@ Release & deploy a commit
8282
1. update main:
8383
8484
85-
export MNLMST_PREVIOUS_VERSION=2.0.0-RC-1
86-
export MNLMST_VERSION=2.0.0-RC-1
85+
export MNLMST_PREVIOUS_VERSION=2.0.0-RC-2
86+
export MNLMST_VERSION=2.0.0-RC-2
8787
find ./ -name "*.md" | xargs perl -0777 -i \
8888
-pe "s@$MNLMST_PREVIOUS_VERSION@$MNLMST_VERSION@g;" \
8989
-pe "s@tree/main@tree/v$MNLMST_VERSION@g;" \
@@ -197,7 +197,7 @@ Prepare next dev cycle
197197
1. update main:
198198
199199
200-
export MNLMST_VERSION=2.0.0-RC-1
200+
export MNLMST_VERSION=2.0.0-RC-2
201201
export MNLMST_NEXT_VERSION=1.2.0
202202
find ./ -name "*.md" | xargs perl -0777 -i \
203203
-pe "s@tree/v$MNLMST_VERSION@tree/main@g;" \

0 commit comments

Comments
 (0)