Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robstoll committed Dec 1, 2023
1 parent 91d4884 commit cbe806c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 12 deletions.
34 changes: 23 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
<!-- for main -->

<!--
[![Download](https://img.shields.io/badge/Download-v1.0.0-%23007ec6)](https://github.com/tegonal/minimalist/releases/tag/v1.0.0)
[![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")
[![Code Quality](https://github.com/tegonal/minimalist/workflows/Code%20Quality/badge.svg?event=push&branch=main)](https://github.com/tegonal/minimalist/actions/workflows/code-quality.yml?query=branch%3Amain)
[![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")

-->
<!-- for main end -->
<!-- for release -->
<!--
[![Download](https://img.shields.io/badge/Download-v0.0.0-%23007ec6)](https://github.com/tegonal/minimalist/releases/tag/v0.0.0)
[![Apache 2.0](https://img.shields.io/badge/%E2%9A%96-Apache%202.0-%230b45a6)](http://opensource.org/licenses/Apache2.0 "License")

[![Download](https://img.shields.io/badge/Download-v1.0.0-%23007ec6)](https://github.com/tegonal/minimalist/releases/tag/v1.0.0)
[![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")
[![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")
-->

<!-- for release end -->


Expand All @@ -22,23 +23,34 @@ a library which helps you in setting up parameterized tests and prioritise them
to execute all of them.


---
<!---
❗ You are taking a *sneak peek* at the next version. It could be that some features you find on this page are not released yet.
Please have a look at the README of the corresponding release/git tag -- latest version: [README of v0.0.0](https://github.com/tegonal/minimalist/tree/v0.0.0/README.md).
---
--->

**Table of Content**
- [Installation](#installation)
- [License](#license)



# Installation

Minimalist will be published to maven central.
But it's in the making, stay tuned...
Minimalist is published to maven central.

*build.gradle.kts*:
```kotlin
repositories {
mavenCentral()
}
dependencies {
testImplementation("com.tegonal.minimalist:minimalist:1.0.0")
}
```

# License

Minimalist is licensed under [EUPL 1.2](https://joinup.ec.europa.eu/collection/eupl/eupl-text-11-12).

Atrium is using
- [junit-jupiter-params](https://github.com/junit-team/junit5) licensed under [EPL 2.0](https://www.eclipse.org/legal/epl-v20.html)
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
alias(libs.plugins.nexus.publish)
}

version = "1.0.0-SNAPSHOT"
version = "1.0.0"
group = "com.tegonal.minimalist"
description = "Library which helps to setup and prioritise parameterized tests"

Expand Down

0 comments on commit cbe806c

Please sign in to comment.