Skip to content

Commit f98f7bc

Browse files
committed
Prepare switchboard 0.1.5 release
1 parent 6fe2b95 commit f98f7bc

8 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/plugin-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
- name: Package .hfpkg
6868
shell: pwsh
6969
run: |
70-
npx --yes @haloforge/plugin-pack@0.2.5 pack . --release --target x86_64-pc-windows-msvc --out dist/plugin-release
70+
npx --yes @haloforge/plugin-pack@0.2.9 pack . --release --target x86_64-pc-windows-msvc --out dist/plugin-release
7171
$pkg = Get-ChildItem dist/plugin-release -Filter *.hfpkg | Select-Object -First 1
7272
if (-not $pkg) { throw "No .hfpkg artifact was created." }
7373
$sha = Get-ChildItem dist/plugin-release -Filter *.hfpkg.sha256 | Select-Object -First 1
@@ -125,7 +125,7 @@ jobs:
125125
run: |
126126
$artifactUrl = "https://github.com/${{ github.repository }}/releases/download/$env:RELEASE_TAG/$env:PKG_NAME"
127127
$args = @(
128-
"--yes", "@haloforge/plugin-pack@0.2.5",
128+
"--yes", "@haloforge/plugin-pack@0.2.9",
129129
"metadata", "$env:PKG_PATH",
130130
"--artifact-url", $artifactUrl,
131131
"--source", "${{ inputs.source }}",
@@ -173,7 +173,7 @@ jobs:
173173
- name: Submit catalog draft
174174
if: env.HF_ADMIN_TOKEN != ''
175175
shell: pwsh
176-
run: npx --yes @haloforge/plugin-pack@0.2.5 submit dist/plugin-release/catalog-draft.json --api-base-url https://admin.haloforge.link --token-env HF_ADMIN_TOKEN
176+
run: npx --yes @haloforge/plugin-pack@0.2.9 submit dist/plugin-release/catalog-draft.json --api-base-url https://admin.haloforge.link --token-env HF_ADMIN_TOKEN
177177

178178
- name: Upload workflow artifacts
179179
uses: actions/upload-artifact@v4

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,20 +70,20 @@ npm run build
7070
Validate with the public packer:
7171

7272
```bash
73-
npx --yes @haloforge/plugin-pack@0.2.5 check .
73+
npx --yes @haloforge/plugin-pack@0.2.9 check .
7474
```
7575

7676
Package:
7777

7878
```bash
79-
npx --yes @haloforge/plugin-pack@0.2.5 pack . --release
79+
npx --yes @haloforge/plugin-pack@0.2.9 pack . --release
8080
```
8181

8282
Install the packaged plugin into a local HaloForge workspace with the `hf` CLI:
8383

8484
```bash
8585
cd /path/to/HaloForge
86-
npm run hf -- plugin install local /path/to/hf-plugin-switchboard/dist/package/dev.haloforge.switchboard-0.1.4.hfpkg --json
86+
npm run hf -- plugin install local /path/to/hf-plugin-switchboard/dist/package/dev.haloforge.switchboard-0.1.5.hfpkg --json
8787
npm run hf -- plugin list --json
8888
```
8989

backend/Cargo.lock

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

backend/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hf-plugin-switchboard"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
description = "HaloForge Switchboard plugin backend"
66
license = "MIT"
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111

1212
[dependencies]
1313
dirs = "6"
14-
hf-plugin-api = { package = "haloforge-plugin-api", version = "0.2.5" }
14+
hf-plugin-api = { package = "haloforge-plugin-api", version = "0.2.9" }
1515
serde = { version = "1", features = ["derive"] }
1616
serde_json = "1"
1717
toml_edit = "0.22"

backend/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl HaloForgePlugin for SwitchboardPlugin {
3131
PluginMetadata {
3232
id: "dev.haloforge.switchboard".into(),
3333
name: "Switchboard".into(),
34-
version: "0.1.4".into(),
34+
version: "0.1.5".into(),
3535
description: "Fast local configuration switching for Claude Code, Codex, and MCP."
3636
.into(),
3737
author: "HaloForge Team".into(),

frontend/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.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hf-plugin-switchboard/frontend",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"private": true,
55
"type": "module",
66
"scripts": {

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://haloforge.dev/schemas/plugin/v1.json",
33
"id": "dev.haloforge.switchboard",
44
"name": "Provider Router",
5-
"version": "0.1.4",
5+
"version": "0.1.5",
66
"description": "Fast local provider configuration for Claude Code, Codex, and MCP.",
77
"long_description": "Adds a HaloForge module for applying provider endpoints to Claude Code and Codex, writing MCP server specs, and restoring local config backups.",
88
"author": "HaloForge Team",

0 commit comments

Comments
 (0)