Skip to content

Commit 9cd87f9

Browse files
committed
fix: pin plugin API release toolchain
1 parent 99eabc5 commit 9cd87f9

16 files changed

Lines changed: 22 additions & 16 deletions

.github/workflows/publish-plugin-api.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ jobs:
3434
npm --version
3535
3636
- name: Setup Rust
37-
uses: dtolnay/rust-toolchain@stable
37+
uses: dtolnay/rust-toolchain@4be7066ada62dd38de10e7b70166bc74ed198c30
38+
with:
39+
toolchain: 1.97.0
3840

3941
- name: Verify release tag
4042
run: node scripts/sync-versions.mjs && node scripts/verify-release-version.mjs

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "haloforge-plugin-api"
3-
version = "0.2.16"
3+
version = "0.2.17"
44
edition = "2021"
55
description = "Plugin API for HaloForge — traits and types for building native HaloForge plugins"
66
license = "MIT"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Permission names are strict. For AI Chat access, the only valid manifest permiss
7171
"homepage": "https://github.com/you/hello-plugin",
7272
"compatibility": {
7373
"min_app_version": "0.8.0",
74-
"min_host_api_version": "0.2.16"
74+
"min_host_api_version": "0.2.17"
7575
},
7676
"capability_levels": [2],
7777
"host_capabilities": [

docs/plugin-development-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Every plugin needs a `manifest.json` at the repository root.
6161
"author": "Example",
6262
"compatibility": {
6363
"min_app_version": "0.8.0",
64-
"min_host_api_version": "0.2.16"
64+
"min_host_api_version": "0.2.17"
6565
},
6666
"capability_levels": [0],
6767
"host_capabilities": ["navigation", "file_intents", "theme_read"],

docs/public-host-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Plugins can now declare:
2424
{
2525
"compatibility": {
2626
"min_app_version": "0.8.0",
27-
"min_host_api_version": "0.2.16"
27+
"min_host_api_version": "0.2.17"
2828
},
2929
"host_capabilities": [
3030
"navigation",

docs/zh/plugin-development-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ my-plugin/
6161
"author": "Example",
6262
"compatibility": {
6363
"min_app_version": "0.8.0",
64-
"min_host_api_version": "0.2.16"
64+
"min_host_api_version": "0.2.17"
6565
},
6666
"capability_levels": [0],
6767
"host_capabilities": ["navigation", "file_intents", "theme_read"],

pack/package-lock.json

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

pack/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@haloforge/plugin-pack",
3-
"version": "0.2.16",
3+
"version": "0.2.17",
44
"description": "HaloForge plugin packager CLI — validate, build, and bundle plugins into .hfpkg archives",
55
"type": "module",
66
"bin": {

rust-toolchain.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[toolchain]
2+
channel = "1.97.0"
3+
profile = "minimal"
4+

sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@haloforge/plugin-sdk",
3-
"version": "0.2.16",
3+
"version": "0.2.17",
44
"description": "HaloForge Plugin SDK — build frontend components for HaloForge plugins",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)