Skip to content

Commit 6caa4f3

Browse files
committed
Release v0.4.1
1 parent b1f5076 commit 6caa4f3

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.MD

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# v0.4.1
2+
### Features
3+
* There are getOrCreate methods for a Row or a Cell
4+
* There are methods to remove a Sheet, a Row or a Cell
5+
* There are methods to retrieve a Row or a Cell based on an index
6+
* There are methods for writing and reading a list of values from a Row
7+
### Fixes
8+
* ExcelSheet's getIndex() method did not return the correct index after deleting a Sheet
9+
### Changes
10+
* The static method that opens an ExcelWorkbook via InputStream no longer takes the extension as input and is no longer checked if it is correct
11+
112
# v0.4.0
213
### Deprecations
314
* All methods of the Converter class up to version 0.2.1 have been deprecated

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Java 17 or above.
7878
## Dependencies
7979
- org.apache.poi:poi:jar:5.2.3
8080
- org.apache.poi:poi-ooxml:jar:5.2.3
81-
- org.projectlombok:lombok:jar:1.18.24
81+
- org.projectlombok:lombok:jar:1.18.26
8282
- commons-beanutils:commons-beanutils:jar:1.9.4
8383
- com.opencsv:opencsv:jar:5.7.1
8484
- com.fasterxml.jackson.core:jackson-databind:jar:2.14.2
@@ -91,7 +91,7 @@ Java 17 or above.
9191
<dependency>
9292
<groupId>io.github.mbenincasa</groupId>
9393
<artifactId>java-excel-utils</artifactId>
94-
<version>0.4.0</version>
94+
<version>0.4.1</version>
9595
</dependency>
9696
```
9797

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.mbenincasa</groupId>
88
<artifactId>java-excel-utils</artifactId>
9-
<version>0.4.0</version>
9+
<version>0.4.1</version>
1010
<packaging>jar</packaging>
1111
<name>Java library with tools for Excel files</name>
1212
<description>Java library that collects tools and methods to speed up development with Excel sheets</description>

0 commit comments

Comments
 (0)