Skip to content

Commit ceafae0

Browse files
authored
Merge pull request #1025 from thewtex/version-bump
Version bump
2 parents 0a6372a + be4e7f2 commit ceafae0

File tree

42 files changed

+704
-197
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+704
-197
lines changed

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
"build:wasi:debug": "pnpm -r build:wasi:debug",
1717
"build:gen:typescript": "pnpm -r build:gen:typescript",
1818
"build:gen:python": "pnpm -r build:gen:python",
19+
"build:python:versionSync": "pnpm -r build:python:versionSync",
20+
"publish:python": "pnpm -r publish:python",
1921
"test:wasi": "pnpm -r test:wasi",
2022
"test:lint": "pnpm -r test:lint",
2123
"test:node": "pnpm -r test:node",

packages/compare-images/environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ dependencies:
66
- python=3.11
77
- pip
88
- pip:
9+
- hatch
910
- itkwasm
1011
- itk-webassemblyinterface>=1.0.b127

packages/compare-images/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@
1313
"build:wasi:debug": "itk-wasm -i itkwasm/wasi:latest-debug build -- -DCMAKE_BUILD_TYPE:STRING=Debug",
1414
"build:python:wasi": "setup-micromamba --micromamba-binary-path ./micromamba/micromamba --micromamba-root-path micromamba --environment-file environment.yml --log-level info --run-command \"run --cwd ./python/itkwasm-compare-images-wasi python -m pip install -e .\"",
1515
"bindgen:typescript": "itk-wasm -b emscripten-build bindgen --package-name @itk-wasm/compare-images --package-description \"Compare images with a tolerance for regression testing.\" --repository 'https://github.com/InsightSoftwareConsortium/itk-wasm'",
16-
"bindgen:python": "itk-wasm -b wasi-build bindgen --package-version 4.0.0 --interface python --package-name itkwasm-compare-images --package-description \"Compare images with a tolerance for regression testing.\" --repository 'https://github.com/InsightSoftwareConsortium/itk-wasm'",
16+
"bindgen:python": "itk-wasm -b wasi-build bindgen --interface python --package-name itkwasm-compare-images --package-description \"Compare images with a tolerance for regression testing.\" --repository 'https://github.com/InsightSoftwareConsortium/itk-wasm'",
1717
"build:gen:typescript": "pnpm build:emscripten && pnpm bindgen:typescript",
1818
"build:gen:python": "pnpm build:wasi && pnpm bindgen:python && pnpm build:micromamba && pnpm build:python:wasi",
19-
"build:micromamba": "setup-micromamba --micromamba-binary-path ./micromamba/micromamba --micromamba-root-path micromamba --init-shell none --create-environment true --environment-file environment.yml --log-level debug --run-command \"clean -fya\"",
19+
"build:micromamba": "setup-micromamba --micromamba-binary-path ./micromamba/micromamba --micromamba-root-path micromamba --init-shell none --create-environment true --environment-file environment.yml --log-level info --run-command \"clean -fya\"",
20+
"build:python:versionSync": "pnpm build:micromamba && itk-wasm version-sync --package-name itkwasm-compare-images",
21+
"publish:python": "pnpm build:micromamba && itk-wasm publish --package-name itkwasm-compare-images",
2022
"test": "pnpm test:data:download",
2123
"test:data:download": "dam download test/data test/data.tar.gz bafybeigcvvf3ol3phmpevbin6ufumqfx65uxxthchqacxftxqpn67uxlxa https://github.com/InsightSoftwareConsortium/itk-wasm/releases/download/itk-wasm-v1.0.0-b.157/data.tar.gz https://bafybeiefbfd6kxcmwq6osnwu72gv6srzsnv6ys5omoodjlmaazx47mdhsq.ipfs.w3s.link/ipfs/bafybeiefbfd6kxcmwq6osnwu72gv6srzsnv6ys5omoodjlmaazx47mdhsq/data.tar.gz",
2224
"test:data:pack": "dam pack test/data test/data.tar.gz"
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.0.0"
1+
__version__ = "4.0.1"

packages/compare-images/python/itkwasm-compare-images-emscripten/itkwasm_compare_images_emscripten/js_package.py

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.0.0"
1+
__version__ = "4.0.1"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.0.0"
1+
__version__ = "4.0.1"

packages/compare-images/typescript/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@itk-wasm/compare-images",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"packageManager": "pnpm@8.11.0",
55
"description": "Compare images with a tolerance for regression testing.",
66
"type": "module",
@@ -46,16 +46,16 @@
4646
"devDependencies": {
4747
"@itk-wasm/compare-images-build": "workspace:^",
4848
"@itk-wasm/image-io": "workspace:^",
49-
"@shoelace-style/shoelace": "^2.5.2",
50-
"@types/node": "^20.2.5",
49+
"@shoelace-style/shoelace": "^2.12.0",
50+
"@types/node": "^20.10.4",
5151
"ava": "^5.3.1",
52-
"cypress": "^12.17.2",
53-
"esbuild": "^0.19.8",
52+
"cypress": "^13.6.1",
53+
"esbuild": "^0.19.9",
5454
"shx": "^0.3.4",
55-
"start-server-and-test": "^2.0.2",
56-
"typescript": "^5.0.4",
57-
"vite": "^4.4.11",
58-
"vite-plugin-static-copy": "^0.17.0"
55+
"start-server-and-test": "^2.0.3",
56+
"typescript": "^5.3.3",
57+
"vite": "^5.0.10",
58+
"vite-plugin-static-copy": "^1.0.0"
5959
},
6060
"repository": {
6161
"type": "git",

packages/compress-stringify/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@
1313
"build:wasi:debug": "itk-wasm -i itkwasm/wasi:latest-debug build -- -DCMAKE_BUILD_TYPE:STRING=Debug",
1414
"build:python:wasi": "setup-micromamba --micromamba-binary-path ./micromamba/micromamba --micromamba-root-path micromamba --environment-file environment.yml --log-level info --run-command \"run --cwd ./python/itkwasm-compress-stringify-wasi python -m pip install -e .\"",
1515
"bindgen:typescript": "itk-wasm -b emscripten-build bindgen --package-name @itk-wasm/compress-stringify --package-description \"Compare images with a tolerance for regression testing.\" --repository 'https://github.com/InsightSoftwareConsortium/itk-wasm'",
16-
"bindgen:python": "itk-wasm -b wasi-build bindgen --package-version 2.0.1 --interface python --package-name itkwasm-compress-stringify --package-description \"Compare images with a tolerance for regression testing.\" --repository 'https://github.com/InsightSoftwareConsortium/itk-wasm'",
16+
"bindgen:python": "itk-wasm -b wasi-build bindgen --interface python --package-name itkwasm-compress-stringify --package-description \"Compare images with a tolerance for regression testing.\" --repository 'https://github.com/InsightSoftwareConsortium/itk-wasm'",
1717
"build:gen:typescript": "pnpm build:emscripten && pnpm bindgen:typescript",
1818
"build:gen:python": "pnpm build:wasi && pnpm bindgen:python && pnpm build:micromamba && pnpm build:python:wasi",
19-
"build:micromamba": "setup-micromamba --micromamba-binary-path ./micromamba/micromamba --micromamba-root-path micromamba --init-shell none --create-environment true --environment-file environment.yml --log-level debug --run-command \"clean -fya\"",
19+
"build:micromamba": "setup-micromamba --micromamba-binary-path ./micromamba/micromamba --micromamba-root-path micromamba --init-shell none --create-environment true --environment-file environment.yml --log-level info --run-command \"clean -fya\"",
20+
"build:python:versionSync": "pnpm build:micromamba && itk-wasm version-sync --package-name itkwasm-compress-stringify",
21+
"publish:python": "pnpm build:micromamba && itk-wasm publish --package-name itkwasm-compress-stringify",
2022
"test": "pnpm test:data:download && pnpm build:gen:python && pnpm test:python",
2123
"test:data:download": "dam download test/data test/data.tar.gz bafkreiha6oye3fd5cxfadnua5r2jlkaco2xuyeek454d2ihiffsx7rauqe https://placeholder",
2224
"test:data:pack": "dam pack test/data test/data.tar.gz",
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.1"
1+
__version__ = "2.0.2"

0 commit comments

Comments
 (0)