Skip to content

Commit bb01a10

Browse files
Dchuong03claude
andcommitted
chore: bump v0.4.2 — Linux build, download page update, block registry fix
- Add x86_64 Linux (ubuntu-22.04) to release build matrix - Update download page: Linux .deb/.AppImage downloads, macOS Gatekeeper instructions - Fix block view registration tree-shaking in production builds - Update SEO metadata and CTA to reflect Linux support Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent cb9394e commit bb01a10

15 files changed

Lines changed: 79 additions & 43 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
runner: macos-latest
1515
- target: x86_64-apple-darwin
1616
runner: macos-15-intel
17+
- target: x86_64-unknown-linux-gnu
18+
runner: ubuntu-22.04
1719

1820
name: Build (${{ matrix.target }})
1921
runs-on: ${{ matrix.runner }}
@@ -32,6 +34,12 @@ jobs:
3234

3335
- run: pnpm install --frozen-lockfile
3436

37+
- name: Install Linux dependencies
38+
if: runner.os == 'Linux'
39+
run: |
40+
sudo apt-get update
41+
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
42+
3543
- name: Install Rust stable
3644
uses: dtolnay/rust-toolchain@stable
3745
with:

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.4.2] - 2026-02-03
4+
5+
### Added
6+
- **Linux Build:** Release pipeline now builds `.deb` and `.AppImage` for x86_64 Linux
7+
- **Download Page:** Linux download with `.deb` (primary) and `.AppImage` (alt) options
8+
- **macOS Instructions:** Gatekeeper bypass guide for first-time app launch on macOS
9+
10+
### Fixed
11+
- Block view registration tree-shaking issue in production builds (BlockRegistry refactor)
12+
13+
### Changed
14+
- Updated download page SEO metadata to include Linux
15+
- Updated FinalCTA to reflect Linux platform support
16+
317
## [0.4.0] - 2026-02-02
418

519
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sidstack",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"private": true,
55
"type": "module",
66
"description": "SidStack - Lightweight AI Agent Orchestration Platform",

packages/api-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sidstack/api-server",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "REST API server for SidStack Web UI",
55
"license": "MIT",
66
"publishConfig": {

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sidstack/cli",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "SidStack CLI - Project Intelligence for AI Coding Agents",
55
"author": "SidStack Team",
66
"license": "MIT",

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sidstack/mcp-server",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "MCP Server for SidStack - task management, knowledge, and impact analysis for Claude Code",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

packages/shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sidstack/shared",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "Shared types and utilities for SidStack",
55
"license": "MIT",
66
"publishConfig": {

packages/vscode-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sidstack",
33
"displayName": "SidStack",
44
"description": "AI-Powered Project Intelligence - Tasks, Knowledge, Impact Analysis & Governance for Claude Code",
5-
"version": "0.4.1",
5+
"version": "0.4.2",
66
"publisher": "sidstack",
77
"license": "MIT",
88
"icon": "media/sidstack-icon.png",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sidstack"
3-
version = "0.4.0"
3+
version = "0.4.2"
44
description = "SidStack - AI-Powered Project Intelligence Platform"
55
authors = ["SidStack Team"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "SidStack",
4-
"version": "0.4.1",
4+
"version": "0.4.2",
55
"identifier": "com.sidstack.agent-manager",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

0 commit comments

Comments
 (0)