Skip to content

Commit c6c1a19

Browse files
committed
Update to ZED SDK 4.2.x
1 parent ff7594e commit c6c1a19

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# zed-java-api
22
zed-java-api provides Java JNI bindings for ZED SDK. The bindings are based on [zed-c-api](https://github.com/stereolabs/zed-c-api).
33

4-
Currently compatible with ZED SDK **4.1.x**.
4+
Currently compatible with ZED SDK **4.2.x**.
55

66
Allows you to use Stereolabs sensors such as ZED 2, ZED 2i, ZED X, ZED Mini, ZED X Mini from Java.
77
## Usage
@@ -16,7 +16,7 @@ Requires Java 17.
1616
### Gradle
1717
```
1818
dependencies {
19-
implementation("us.ihmc:zed-java-api:4.1.4")
19+
implementation("us.ihmc:zed-java-api:4.2.0")
2020
}
2121
```
2222
### Maven
@@ -25,7 +25,7 @@ dependencies {
2525
<dependency>
2626
<groupId>us.ihmc</groupId>
2727
<artifactId>zed-java-api</artifactId>
28-
<version>4.1.4</version>
28+
<version>4.2.0</version>
2929
</dependency>
3030
</dependencies>
3131
```

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = "us.ihmc"
7-
version = "4.1.4"
7+
version = "4.2.0"
88

99
repositories {
1010
mavenCentral()

cppbuild.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pushd .
44
mkdir cppbuild
55
cd cppbuild
66

7-
ZED_C_API_VERSION=4.1.0
7+
ZED_C_API_VERSION=4.2.0
88
if [ ! -f "zed-c-api.tar.gz" ]; then
99
curl -o zed-c-api.tar.gz https://codeload.github.com/stereolabs/zed-c-api/tar.gz/refs/tags/v$ZED_C_API_VERSION
1010
fi

0 commit comments

Comments
 (0)