Skip to content

Commit d8aaaff

Browse files
committedOct 15, 2022
Bump release to v5.9.1-r0
1 parent c4fe3fd commit d8aaaff

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed
 

‎README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ A [Junit 5](http://junit.org/junit5/) library to provide annotations that load
44
data from JSON Strings or files in parameterized tests.
55

66
## Project Info
7+
78
[Project site](http://www.joshka.net/junit-json-params)
89

910
[![Build Status](https://app.travis-ci.com/joshka/junit-json-params.svg?branch=master)](https://app.travis-ci.com/joshka/junit-json-params)
@@ -17,22 +18,25 @@ data from JSON Strings or files in parameterized tests.
1718
## Installation
1819

1920
### Apache Maven
21+
2022
```xml
2123
<dependency>
2224
<groupId>net.joshka</groupId>
2325
<artifactId>junit-json-params</artifactId>
24-
<version>5.6.2-r1</version>
26+
<version>5.9.1-r0</version>
2527
</dependency>
2628
```
2729

2830
### Gradle
31+
2932
```groovy
30-
compile 'net.joshka:junit-json-params:5.6.2-r1'
33+
compile 'net.joshka:junit-json-params:5.9.1-r0'
3134
```
3235

3336
## Examples
3437

3538
### `@JsonSource`
39+
3640
`@JsonSource` allows you to specify argument lists as JSON strings.
3741

3842
See [`JsonArgumentsProviderTest`](https://github.com/joshka/junit-json-params/blob/master/src/test/java/net/joshka/junit/json/params/JsonArgumentsProviderTest.java)
@@ -102,6 +106,7 @@ class JsonArgumentsProviderTest {
102106
```
103107

104108
### `@JsonFileSource`
109+
105110
`@JsonFileSource` lets you use JSON files from the classpath. It supports
106111
single objects and arrays of objects and JSON primitives (numbers and strings).
107112

@@ -160,6 +165,7 @@ class JsonFileArgumentsProviderTest {
160165
```
161166

162167
## License
163-
Copyright 2019 Joshua McKinney
168+
169+
Copyright ©️ 2019-2022 Joshua McKinney
164170

165171
Code is under the [Apache License 2.0](LICENSE.txt)

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
}
1111

1212
group = 'net.joshka'
13-
version = '5.6.2-r1'
13+
version = '5.9.1-r0'
1414
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
1515
ext.isRunningOnTravis = System.getenv("CI") == "true"
1616

0 commit comments

Comments
 (0)