Skip to content

Commit 65b3890

Browse files
committed
chore(deps): Updated to version 1.2.0
1 parent deae6cf commit 65b3890

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ the [Arrow](https://arrow-kt.io/) library. In detail, the project provides asser
1313
- [x] `Either<E, A>`
1414
- [x] `Option<A>`
1515
- [x] `Raise<E>.() -> A`
16+
- [x] `NonEmptyList<A>`
1617

1718
Maybe you're asking yourself: "Why do we need AssertJ assertions for Arrow types?". The answer is simple: We often use
1819
Kotlin and Arrow Kt inside a Java project using Spring Boot. In this case, we already have AssertJ in the classpath as
@@ -27,15 +28,15 @@ The library is available on Maven Central. To use it, add the following dependen
2728
<dependency>
2829
<groupId>in.rcard</groupId>
2930
<artifactId>assertj-arrow-core</artifactId>
30-
<version>1.1.0</version>
31+
<version>1.2.0</version>
3132
<scope>test</scope>
3233
</dependency>
3334
```
3435

3536
Otherwise, if you're using Gradle, add the following dependency to your `build.gradle.kts` file:
3637

3738
```kotlin
38-
testImplementation("in.rcard:assertj-arrow-core:1.1.0")
39+
testImplementation("in.rcard:assertj-arrow-core:1.2.0")
3940
```
4041

4142
## Assertions Guide

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>in.rcard</groupId>
88
<artifactId>assertj-arrow-core</artifactId>
9-
<version>1.1.1-SNAPSHOT</version>
9+
<version>1.2.0</version>
1010

1111
<name>AssertJ fluent assertions for Kotlin Arrow Core library</name>
1212
<description>Rich and fluent assertions for testing Kotlin Arrow Core types</description>

0 commit comments

Comments
 (0)