Skip to content

Commit ebcded6

Browse files
committed
fix: update minPluginKitVersion to 2 in CI and docs
1 parent 725b8c5 commit ebcded6

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ jobs:
286286
{"architecture": "x86_64", "downloadURL": x86_64_url, "sha256": x86_64_sha}
287287
],
288288
"minAppVersion": min_app_version,
289-
"minPluginKitVersion": 1,
289+
"minPluginKitVersion": 2,
290290
"iconName": icon, "isVerified": True
291291
}
292292

docs/development/plugin-registry.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Each entry matches the `RegistryPlugin` model:
3636
| `sha256` | `string` | No* | SHA-256 hex digest of the ZIP file |
3737
| `binaries` | `[object]` | No | Per-architecture binaries: `[{ "architecture": "arm64"\|"x86_64", "downloadURL": "...", "sha256": "..." }]` |
3838
| `minAppVersion` | `string` | No | Minimum TablePro version (e.g., `"0.17.0"`) |
39-
| `minPluginKitVersion` | `int` | No | Minimum PluginKit version (currently `1`) |
39+
| `minPluginKitVersion` | `int` | No | Minimum PluginKit version (currently `2`) |
4040
| `iconName` | `string` | No | SF Symbol name for display |
4141
| `isVerified` | `bool` | Yes | Whether the plugin is verified by the TablePro team |
4242

@@ -66,7 +66,7 @@ These two database drivers ship as downloadable plugins instead of being bundled
6666
{ "architecture": "x86_64", "downloadURL": "https://github.com/datlechin/TablePro/releases/download/plugin-oracle-v1.0.0/OracleDriver-x86_64.zip", "sha256": "<sha256-of-zip>" }
6767
],
6868
"minAppVersion": "0.17.0",
69-
"minPluginKitVersion": 1,
69+
"minPluginKitVersion": 2,
7070
"iconName": "server.rack",
7171
"isVerified": true
7272
}
@@ -92,7 +92,7 @@ These two database drivers ship as downloadable plugins instead of being bundled
9292
{ "architecture": "x86_64", "downloadURL": "https://github.com/datlechin/TablePro/releases/download/plugin-clickhouse-v1.0.0/ClickHouseDriver-x86_64.zip", "sha256": "<sha256-of-zip>" }
9393
],
9494
"minAppVersion": "0.17.0",
95-
"minPluginKitVersion": 1,
95+
"minPluginKitVersion": 2,
9696
"iconName": "chart.bar.xaxis",
9797
"isVerified": true
9898
}

0 commit comments

Comments
 (0)