Skip to content

Commit dd47b67

Browse files
committed
chore(compare-images): bump version to 5.2.1
1 parent 29e5498 commit dd47b67

File tree

7 files changed

+2234
-705
lines changed

7 files changed

+2234
-705
lines changed

packages/compare-images/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"name": "@itk-wasm/compare-images-build",
3-
"version": "1.0.0",
3+
"version": "5.2.1",
44
"private": true,
5-
"packageManager": "[email protected]",
65
"description": "scripts to generate @itk-wasm/compare-stringify itk-wasm artifacts.",
76
"type": "module",
87
"itk-wasm": {

packages/compare-images/pixi.lock

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

packages/compare-images/pixi.toml

Lines changed: 33 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,44 @@ version = "0.1.0"
1111
[dependencies]
1212
python = "3.12.*"
1313
pnpm = ">=9.12.1,<10"
14+
hatch = ">=1.13.0,<2"
15+
pip = ">=24.2,<25"
16+
17+
[target.win-64.dependencies]
18+
m2w64-jq = ">=1.6.0,<2"
19+
20+
[target.unix.dependencies]
21+
jq = ">=1.7.1,<2"
22+
23+
[tasks.version-sync-typescript]
24+
cmd = '''version=$(cat package.json | jq .version) &&
25+
jq ".version = $version" typescript/package.json > typescript/package.json.tmp &&
26+
mv typescript/package.json.tmp typescript/package.json'''
27+
28+
[tasks.version-sync-python-wasi]
29+
cmd = '''version=$(cat ../../package.json | jq -r .version) &&
30+
echo "version is $version" &&
31+
hatch version $version'''
32+
cwd = "python/itkwasm-compare-images-wasi"
33+
34+
[tasks.version-sync-python-emscripten]
35+
cmd = '''version=$(cat ../../package.json | jq -r .version) &&
36+
hatch version $version'''
37+
cwd = "python/itkwasm-compare-images-emscripten"
38+
39+
[tasks.version-sync-python-dispatch]
40+
cmd = '''version=$(cat ../../package.json | jq -r .version) &&
41+
hatch version $version'''
42+
cwd = "python/itkwasm-compare-images"
43+
44+
[tasks.version-sync]
45+
depends-on = ["version-sync-typescript", "version-sync-python-wasi", "version-sync-python-emscripten", "version-sync-python-dispatch"]
46+
description = "Synchronize package versions"
1447

1548
[feature.python.dependencies]
1649
pytest = ">=8.3.3,<9"
17-
pip = ">=24.2,<25"
1850

1951
[feature.python.pypi-dependencies]
20-
hatch = ">=1.13.0, <2"
2152
itkwasm-compare-images-wasi = { path = "python/itkwasm-compare-images-wasi", editable = true }
2253
itkwasm-compare-images = { path = "python/itkwasm-compare-images", editable = true }
2354
pyodide-py = ">=0.26.3, <0.27"
@@ -77,7 +108,6 @@ depends-on = ["download-pyodide"]
77108
description = "Serve itkwasm-compare-images for development"
78109

79110
[feature.python.tasks.test-python]
80-
cmd = "echo 'Testing all Python packages'"
81111
depends-on = ["test-wasi", "test-emscripten", "test-dispatch"]
82112
description = "Run tests for all Python packages"
83113

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

packages/compare-images/typescript/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "@itk-wasm/compare-images",
3-
"version": "5.2.0",
4-
"packageManager": "[email protected]",
3+
"version": "5.2.1",
54
"description": "Compare images with a tolerance for regression testing.",
65
"type": "module",
76
"module": "./dist/index.js",

0 commit comments

Comments
 (0)