Skip to content

Commit 4ea4846

Browse files
committed
🔖 version 3.2.1
1 parent b7f2531 commit 4ea4846

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Mindee Java API Library Changelog
22

3+
## v3.2.1 - 2023-03-28
4+
### Changes
5+
* :arrow_up: update httpClient and picocli
6+
7+
38
## v3.2.0 - 2023-03-27
49
### Changes
510
* :sparkles: add **experimental** support for line items reconstruction in custom APIs

cli.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ if ! ls ./target/libs/picocli-* 2>&1 >/dev/null; then
55
mvn dependency:copy-dependencies -DoutputDirectory=target/libs -Dhttps.protocols=TLSv1.2
66
fi
77

8-
java -cp "target/mindee-api-java-3.2.0.jar:target/libs/*" com.mindee.CommandLineInterface "$@"
8+
VERSION=$(grep -m1 -o -P '(?<=\<version\>)[0-9.]*(?!/<\/version>)' pom.xml)
9+
10+
java -cp "target/mindee-api-java-${VERSION}.jar:target/libs/*" com.mindee.CommandLineInterface "$@"

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55

66
<groupId>com.mindee.sdk</groupId>
77
<artifactId>mindee-api-java</artifactId>
8-
<version>3.2.0</version>
8+
<version>3.2.1</version>
99
<modelVersion>4.0.0</modelVersion>
1010
<name>Mindee Java Helper Library</name>
11-
<description>Java Library to call Mindee's Off The Shelf and Custom APIs</description>
11+
<description>Java Library to call Mindee's Off-The-Shelf and Custom APIs</description>
1212
<url>https://github.com/mindee/mindee-api-java</url>
1313
<inceptionYear>2022</inceptionYear>
1414
<organization>

0 commit comments

Comments
 (0)