Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default-members = [
]

[workspace.package]
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "Apache-2.0"
authors = ["BrainFlow"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ BrainFlow is a **desktop-first, local-first** knowledge and workflow environment
**Primary surface:** the AI Workflow Suite (goal, editable workflow graph, execution state, artifacts, evidence/provenance).
**Secondary:** vault rail, source-reference nodes, and a file viewer for originals — sources stay immutable by default.

> Status: **Unsigned Windows alpha** (`v0.1.1`) — foundation vertical slice + knowledge-workspace scaffolding in-tree. Phase 1 sizes/startup recorded; scripted vertical-slice E2E and CI green. See [docs/REMAINING_GAPS.md](docs/REMAINING_GAPS.md). **Not GA.** Installers are not code-signed; macOS/Linux packaging is not verified. Repository / releases: [github.com/ericcayers-ai/BrainFlow](https://github.com/ericcayers-ai/BrainFlow/releases/tag/v0.1.1).
> Status: **Unsigned Windows alpha** (`v0.1.2`) — foundation vertical slice + knowledge-workspace scaffolding + workflow-first shell UX revamp. Phase 1 sizes/startup recorded; scripted vertical-slice E2E and CI green. See [docs/REMAINING_GAPS.md](docs/REMAINING_GAPS.md). **Not GA.** Installers are not code-signed; macOS/Linux packaging is not verified. Repository / releases: [github.com/ericcayers-ai/BrainFlow](https://github.com/ericcayers-ai/BrainFlow/releases/tag/v0.1.2).

## Product contract (summary)

Expand Down
4 changes: 2 additions & 2 deletions apps/desktop/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "desktop",
"private": true,
"version": "0.1.1",
"version": "0.1.2",
"license": "Apache-2.0",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "desktop"
version = "0.1.1"
version = "0.1.2"
description = "BrainFlow desktop shell (Tauri 2)"
authors = ["BrainFlow"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "BrainFlow",
"version": "0.1.1",
"version": "0.1.2",
"identifier": "com.brainflow.app",
"build": {
"beforeDevCommand": "npm run dev",
Expand Down
6 changes: 3 additions & 3 deletions docs/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ Mobile and browser clients are **out of scope for desktop GA**. Discovery may st
signtool sign /fd SHA256 /tr http://timestamp.digicert.com /td SHA256 `
/n "YOUR_ORG_NAME" `
target\release\desktop.exe `
target\release\bundle\nsis\BrainFlow_0.1.1_x64-setup.exe `
target\release\bundle\msi\BrainFlow_0.1.1_x64_en-US.msi
signtool verify /pa target\release\bundle\nsis\BrainFlow_0.1.1_x64-setup.exe
target\release\bundle\nsis\BrainFlow_0.1.2_x64-setup.exe `
target\release\bundle\msi\BrainFlow_0.1.2_x64_en-US.msi
signtool verify /pa target\release\bundle\nsis\BrainFlow_0.1.2_x64-setup.exe
```

5. Wire the same step into CI release jobs; **fail the job if signature verification fails or the step is skipped** ([RELEASE_SECURITY.md](RELEASE_SECURITY.md) AC-REL-05).
Expand Down
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "brainflow",
"private": true,
"version": "0.1.1",
"version": "0.1.2",
"license": "Apache-2.0",
"description": "BrainFlow monorepo",
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@brainflow/plugin-sdk",
"version": "0.1.1",
"version": "0.1.2",
"private": true,
"license": "Apache-2.0",
"description": "Capability-based plugin manifests and WASM sandbox contract (stub)",
Expand Down
2 changes: 1 addition & 1 deletion packages/schemas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@brainflow/schemas",
"version": "0.1.1",
"version": "0.1.2",
"private": true,
"license": "Apache-2.0",
"description": "Shared versioned JSON Schemas for BrainFlow (Workflow IR, RPC, runs)",
Expand Down
2 changes: 1 addition & 1 deletion services/ai-worker/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "brainflow-ai-worker"
version = "0.1.1"
version = "0.1.2"
description = "Supervised BrainFlow AI / ingestion worker (JSON-RPC over stdio)"
readme = "README.md"
license = { text = "Apache-2.0" }
Expand Down
Loading