File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments