Skip to content

Commit

Permalink
upgrade from hamcrest-core:1.3 to hamcrest 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev committed Sep 5, 2022
1 parent 91dd527 commit c661e24
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
== Changelog

=== 1.6.0
* upgrade POI 4.1.2 -> 5.2.2
=== 1.6.0 (released 05.09.2022)
* #4 add matcher doesNotContainText - thanks to Vitali Plagov for PR #4
* upgrade POI 4.1.2 -> 5.2.2
* upgrade from hamcrest-core:1.3 to hamcrest 2.2

=== 1.5.0 (released 03.12.2021)
* #2 fix assertions for floating point numbers -- thanks to Dmitry Romashov for PR #3
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ If you use **Maven**, add the following dependency to pom.xml:
<dependency>
<groupId>com.codeborne</groupId>
<artifactId>xls-test</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
</dependency>
```

If you use **Gradle**, add the following dependency to build.gradle:

```groovy
testCompile 'com.codeborne:xls-test:1.5.0'
testCompile 'com.codeborne:xls-test:1.6.0'
```

## How to contribute
Expand Down
3 changes: 1 addition & 2 deletions gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ dependencies {
implementation group: 'org.apache.poi', name: 'poi', version: '5.2.2', transitive: true
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.2.2', transitive: true

implementation group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3', transitive: false
implementation group: 'org.hamcrest', name: 'hamcrest', version: '2.2', transitive: false
testImplementation group: 'junit', name: 'junit', version: '4.13.2', transitive: false
testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3', transitive: false
}

repositories{
Expand Down

0 comments on commit c661e24

Please sign in to comment.