Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

# Maven build directory
target/
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,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.2.2</version>
<version>2.0.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.2.2")
testImplementation("in.rcard:assertj-arrow-core:2.0.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.2.3-SNAPSHOT</version>
<version>2.0.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