Skip to content

Commit e98abe8

Browse files
authored
Merge pull request #1440 from thewtex/create-itk-wasm-bump
create itk wasm bump
2 parents 5bebcd7 + d1469ce commit e98abe8

File tree

10 files changed

+12
-11
lines changed

10 files changed

+12
-11
lines changed

packages/core/typescript/create-itk-wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-itk-wasm",
3-
"version": "2.1.1",
3+
"version": "2.1.3",
44
"description": "CLI to create a new ITK-Wasm project or add a pipeline to an existing project.",
55
"type": "module",
66
"exports": {

packages/core/typescript/create-itk-wasm/src/generate/itk-wasm-env-bash.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export ITK_WASM_TEST_DATA_HASH=\${ITK_WASM_TEST_DATA_HASH:-$(cat package.json |
2020
export ITK_WASM_TEST_DATA_URLS=\${ITK_WASM_TEST_DATA_URLS:-$(cat package.json | jq -e -r '."itk-wasm"."test-data-urls" | join(" ")')}
2121
2222
export ITK_WASM_ITK_REPOSITORY=\${ITK_WASM_ITK_REPOSITORY:-"https://github.com/thewtex/ITK"}
23-
export ITK_WASM_ITK_BRANCH=\${ITK_WASM_ITK_BRANCH:-"itkwasm-2024-05-20-5db055d7ad3b-4"}
23+
export ITK_WASM_ITK_BRANCH=\${ITK_WASM_ITK_BRANCH:-"itkwasm-2025-03-19-25d3162371"}
2424
2525
export ITK_WASM_NATIVE_WORKSPACE=\${ITK_WASM_NATIVE_WORKSPACE:-$(pwd)/native}
2626

packages/core/typescript/create-itk-wasm/src/generate/package-json.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function generatePackageJson(project: ProjectSpec) {
5353
},
5454
devDependencies: {
5555
'@itk-wasm/dam': '^1.1.1',
56-
'itk-wasm': '1.0.0-b.188'
56+
'itk-wasm': '1.0.0-b.196'
5757
}
5858
}
5959
if (project.author) {

packages/core/typescript/create-itk-wasm/src/generate/pixi-toml.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ python = ["python"]
2323
2424
[dependencies]
2525
python = "3.12.*"
26-
pnpm = ">=10.12.1,<11"
26+
pnpm = ">=10.14.0,<11"
2727
hatch = ">=1.13.0,<2"
2828
pip = ">=24.2,<25"
2929

packages/core/typescript/itk-wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "itk-wasm",
3-
"version": "1.0.0-b.195",
3+
"version": "1.0.0-b.196",
44
"description": "High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.",
55
"type": "module",
66
"module": "./dist/index.js",

packages/core/typescript/itk-wasm/src/bindgen/typescript/resources/template.package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"author": "",
3434
"license": "Apache-2.0",
3535
"dependencies": {
36-
"itk-wasm": "1.0.0-b.195"
36+
"itk-wasm": "1.0.0-b.196"
3737
},
3838
"devDependencies": {
3939
"@itk-wasm/demo-app": "^0.2.0",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
const defaultImageTag = '20250619-3165ade4'
1+
const defaultImageTag = '20250813-cd217d20'
22
export default defaultImageTag
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const version = '1.0.0-b.195'
1+
const version = '1.0.0-b.196'
22

33
export default version

src/docker/RELEASE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ Verify the source tree.
44

55
```
66
7-
# on an amd64 system
7+
# on an arm64 system
88
# DockerHub, quay.io login required
99
pixi run build-docker-images --with-debug
1010
./src/docker/push.sh
1111
12-
# on a linux arm64 system
12+
# on a linux amd64 system
1313
export OCI_EXE=docker
1414
pixi run build-docker-images --with-debug
1515
# requires manifest-tool, see https://github.com/estesp/manifest-tool/releases/

src/docker/itk-wasm-base/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,11 @@ RUN mkdir ITK-build && \
9898
find . -name '*.o' -delete && \
9999
cd .. && chmod -R 777 ITK-build
100100

101-
ENV ITKMeshToPolyData_GIT_TAG=1e594b7437a43be348b0ccea827c66fb5aa13e1f
101+
ENV ITKMeshToPolyData_GIT_TAG=45454052790b9f01bc1e1baf0e9400f68a3f1363
102102
RUN git clone https://github.com/InsightSoftwareConsortium/ITKMeshToPolyData.git && \
103103
cd ITKMeshToPolyData && \
104104
git checkout ${ITKMeshToPolyData_GIT_TAG} && \
105+
echo "" > wasm/CMakeLists.txt && \
105106
cd / && \
106107
mkdir ITKMeshToPolyData-build && \
107108
cd ITKMeshToPolyData-build && \

0 commit comments

Comments
 (0)