Skip to content

Commit 890b4a1

Browse files
Merge pull request #27 from doo/yk/0.810.7-update
[SB-20802, SB-20787] 8.1.0
2 parents c30e345 + 8f6393b commit 890b4a1

8 files changed

Lines changed: 35 additions & 34 deletions

File tree

.github/workflows/run-tests-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ on:
4141

4242
# Global environment variables
4343
env:
44-
SDK_VERSION: '0.800.5'
44+
SDK_VERSION: '0.810.7'
4545

4646
jobs:
4747
test-x86_64:

Libraries.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Open Source libraries used in the Scanbot Linux SDK version 8.0.0:
1+
Open Source libraries used in the Scanbot Linux SDK version 8.1.0:
22

33
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
44

examples/java/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Open `build.gradle` and replace the constant with the actual version number of the SDK you want to install.
66

77
```groovy
8-
def SCANBOTSDK_VERSION = "<SCANBOTSDK_VERSION>" // ex: 0.800.3
8+
def SCANBOTSDK_VERSION = "<SCANBOTSDK_VERSION>" // e.g., 8.1.0
99
```
1010

1111
## Usage

examples/java/build.gradle

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

66
// TODO Add your SCANBOTSDK_VERSION here.
7-
def SCANBOTSDK_VERSION = "8.0.0"
7+
def SCANBOTSDK_VERSION = "0.810.7"
88

99
def arch = System.getProperty("os.arch")
1010
def SCANBOTSDK_ARCHITECTURE = (arch.contains("arm") || arch.contains("aarch64")) ? "aarch64" : "x86_64"

examples/nodejs/package-lock.json

Lines changed: 26 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
"typescript": "^5.9.2"
1616
},
1717
"dependencies": {
18-
"scanbotsdk": "https://github.com/doo/scanbot-sdk-example-linux/releases/download/standalone-sdk%2Fv8.0.0/nodejs-scanbotsdk-8.0.0.tgz"
18+
"scanbotsdk": "https://github.com/doo/scanbot-sdk-example-linux/releases/download/standalone-sdk%2Fv0.810.7/nodejs-scanbotsdk-0.810.7.tgz"
1919
}
2020
}

examples/nodejs/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"exactOptionalPropertyTypes": true,
1515

1616
"strict": true,
17-
"jsx": "react-jsx",
17+
1818
"isolatedModules": true,
1919
"noUncheckedSideEffectImports": true,
2020
"moduleDetection": "force",
@@ -24,6 +24,7 @@
2424
"esModuleInterop": true,
2525
"allowSyntheticDefaultImports": true,
2626

27-
"resolveJsonModule": true
27+
"resolveJsonModule": true,
28+
"types": ["node"]
2829
}
2930
}

test-scripts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ test-scripts/
2929

3030
```bash
3131
export SCANBOT_LICENSE="your-license-key-here"
32-
export SDK_VERSION=0.800.5
32+
export SDK_VERSION=0.810.7
3333
```
3434

3535
### 2. Build Test Container

0 commit comments

Comments
 (0)