Skip to content

Commit

Permalink
Release V1.10.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Sayi committed Jan 25, 2024
1 parent f549c22 commit 5ea9dde
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ poi-tl supports **custom functions (plug-ins)**, functions can be executed anywh
<dependency>
<groupId>com.deepoove</groupId>
<artifactId>poi-tl</artifactId>
<version>1.10.4</version>
<version>1.10.6</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion poi-tl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.deepoove</groupId>
<artifactId>poi-tl</artifactId>
<version>1.10.6-SNAPSHOT</version>
<version>1.10.6</version>
<packaging>jar</packaging>

<name>poi-tl</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ public void guessPictureType() throws IOException {
assertEquals(PictureType.TIFF,
PictureType.suggestFileType(ByteUtils.getLocalByteArray(new File("src/test/resources/picture/p.tif"))));
assertEquals(PictureType.PNG,
PictureType.suggestFileType(ByteUtils.getUrlByteArray("http://deepoove.com/images/icecream.png")));
PictureType.suggestFileType(ByteUtils.getUrlByteArray("https://deepoove.com/images/icecream.png")));
assertEquals(PictureType.SVG, PictureType
.suggestFileType(ByteUtils.getUrlByteArray("http://deepoove.com/images/%E8%8C%84%E5%AD%90.svg")));
.suggestFileType(ByteUtils.getUrlByteArray("https://deepoove.com/images/%E8%8C%84%E5%AD%90.svg")));
}

}

0 comments on commit 5ea9dde

Please sign in to comment.