Skip to content

Commit c661e24

Browse files
committed
upgrade from hamcrest-core:1.3 to hamcrest 2.2
1 parent 91dd527 commit c661e24

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
== Changelog
22

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

78
=== 1.5.0 (released 03.12.2021)
89
* #2 fix assertions for floating point numbers -- thanks to Dmitry Romashov for PR #3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ If you use **Maven**, add the following dependency to pom.xml:
3131
<dependency>
3232
<groupId>com.codeborne</groupId>
3333
<artifactId>xls-test</artifactId>
34-
<version>1.5.0</version>
34+
<version>1.6.0</version>
3535
</dependency>
3636
```
3737

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

4040
```groovy
41-
testCompile 'com.codeborne:xls-test:1.5.0'
41+
testCompile 'com.codeborne:xls-test:1.6.0'
4242
```
4343

4444
## How to contribute

gradle/dependencies.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ dependencies {
55
implementation group: 'org.apache.poi', name: 'poi', version: '5.2.2', transitive: true
66
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '5.2.2', transitive: true
77

8-
implementation group: 'org.hamcrest', name: 'hamcrest-core', version: '1.3', transitive: false
8+
implementation group: 'org.hamcrest', name: 'hamcrest', version: '2.2', transitive: false
99
testImplementation group: 'junit', name: 'junit', version: '4.13.2', transitive: false
10-
testImplementation group: 'org.hamcrest', name: 'hamcrest-all', version: '1.3', transitive: false
1110
}
1211

1312
repositories{

0 commit comments

Comments
 (0)