Skip to content

Commit

Permalink
chore(deps): Updated to version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rcardin committed Sep 16, 2024
1 parent deae6cf commit 65b3890
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ the [Arrow](https://arrow-kt.io/) library. In detail, the project provides asser
- [x] `Either<E, A>`
- [x] `Option<A>`
- [x] `Raise<E>.() -> A`
- [x] `NonEmptyList<A>`

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

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

```kotlin
testImplementation("in.rcard:assertj-arrow-core:1.1.0")
testImplementation("in.rcard:assertj-arrow-core:1.2.0")
```

## Assertions Guide
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>in.rcard</groupId>
<artifactId>assertj-arrow-core</artifactId>
<version>1.1.1-SNAPSHOT</version>
<version>1.2.0</version>

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

0 comments on commit 65b3890

Please sign in to comment.