Skip to content

Commit c08972c

Browse files
committed
release 1.7.0
1 parent d865b5f commit c08972c

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

CHANGELOG

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

3+
=== 1.7.0 (released 22.12.2022)
4+
* bump POI from 5.2.2 to 5.2.3
5+
36
=== 1.6.0 (released 05.09.2022)
47
* #4 add matcher doesNotContainText - thanks to Vitali Plagov for PR #4
58
* upgrade POI 4.1.2 -> 5.2.2

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
[![Build Status](https://travis-ci.org/codeborne/xls-test.svg?branch=master)](https://travis-ci.org/codeborne/xls-test)
21
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.codeborne/xls-test/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.codeborne/xls-test)
3-
[![Coverage Status](https://coveralls.io/repos/github/codeborne/xls-test/badge.svg?branch=master)](https://coveralls.io/github/codeborne/xls-test?branch=master)
2+
[![Coverage Status](https://coveralls.io/repos/github/codeborne/xls-test/badge.svg?branch=main)](https://coveralls.io/github/codeborne/xls-test?branch=main)
43

54
# XLS Test
65
Excel testing library
@@ -31,14 +30,14 @@ If you use **Maven**, add the following dependency to pom.xml:
3130
<dependency>
3231
<groupId>com.codeborne</groupId>
3332
<artifactId>xls-test</artifactId>
34-
<version>1.6.0</version>
33+
<version>1.7.0</version>
3534
</dependency>
3635
```
3736

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

4039
```groovy
41-
testCompile 'com.codeborne:xls-test:1.6.0'
40+
testCompile 'com.codeborne:xls-test:1.7.0'
4241
```
4342

4443
## How to contribute

build.gradle

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
buildscript {
22
repositories {
3-
jcenter()
3+
mavenCentral()
44
maven { url 'https://plugins.gradle.org/m2' }
55
}
6-
dependencies {
7-
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.3'
8-
}
96
}
107

11-
apply plugin: 'java'
12-
apply plugin: 'jacoco'
13-
apply plugin: 'com.github.kt3k.coveralls'
8+
plugins {
9+
id 'java'
10+
id 'jacoco'
11+
id 'com.github.kt3k.coveralls' version '2.12.0'
12+
}
1413

1514
group='com.codeborne'
1615
archivesBaseName = 'xls-test'
17-
version='1.6.0'
16+
version='1.7.0'
1817

1918
defaultTasks 'test', 'publishToMavenLocal'
2019

0 commit comments

Comments
 (0)