Skip to content

Commit 5cc7e7a

Browse files
committed
ENH: Base wasm on ITK-Wasm 1.0b192
Improved Transform support.
1 parent 02f3e3f commit 5cc7e7a

File tree

10 files changed

+1558
-1470
lines changed

10 files changed

+1558
-1470
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"itk-wasm": {
99
"description": "A toolbox for rigid and nonrigid registration of images.",
1010
"repository": "https://github.com/InsightSoftwareConsortium/ITKElastix",
11-
"package-version": "1.0.0",
11+
"package-version": "1.0.1",
1212
"test-data-hash": "bafybeie7oon27usqjgrtxodzkbd4i6sanfwobv26c3tf7adhxop46o2f3q",
1313
"test-data-urls": [
1414
"https://data.kitware.com/api/v1/file/65196dede7f0366cdfec199e/download",
@@ -25,6 +25,6 @@
2525
"license": "Apache-2.0",
2626
"devDependencies": {
2727
"@itk-wasm/dam": "^1.1.1",
28-
"itk-wasm": "^1.0.0-b.188"
28+
"itk-wasm": "^1.0.0-b.192"
2929
}
3030
}

pnpm-lock.yaml

Lines changed: 1547 additions & 1459 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.0.1"

wasm/python/itkwasm-elastix-emscripten/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ keywords = [
3232

3333
requires-python = ">=3.9"
3434
dependencies = [
35-
"itkwasm >= 1.0.b191",
35+
"itkwasm >= 1.0.b192",
3636
]
3737

3838
[project.urls]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.0.1"

wasm/python/itkwasm-elastix-wasi/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ keywords = [
3232

3333
requires-python = ">=3.9"
3434
dependencies = [
35-
"itkwasm >= 1.0.b191",
35+
"itkwasm >= 1.0.b192",
3636
"importlib_resources",
3737
]
3838

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.0.1"

wasm/python/itkwasm-elastix/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ keywords = [
3333

3434
requires-python = ">=3.9"
3535
dependencies = [
36-
"itkwasm >= 1.0.b191",
36+
"itkwasm >= 1.0.b192",
3737
"itkwasm-elastix-wasi; sys_platform != \"emscripten\"",
3838
"itkwasm-elastix-emscripten; sys_platform == \"emscripten\"",
3939

wasm/typescript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@itk-wasm/elastix",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A toolbox for rigid and nonrigid registration of images.",
55
"type": "module",
66
"module": "./dist/index.js",
@@ -34,7 +34,7 @@
3434
"author": "",
3535
"license": "Apache-2.0",
3636
"dependencies": {
37-
"itk-wasm": "^1.0.0-b.188"
37+
"itk-wasm": "^1.0.0-b.192"
3838
},
3939
"devDependencies": {
4040
"@itk-wasm/demo-app": "^0.2.0",

wasm/typescript/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const version = "1.0.0"
1+
const version = "1.0.1"
22
export default version
33

0 commit comments

Comments
 (0)