Skip to content

v0.3.0

Choose a tag to compare

@github-actions github-actions released this 27 Jun 08:51
9ec5ddd

The first feature release since the OSS launch — Burnless now reads your real money. Bundles PRs #11, #12, #13, #14.

Added

  • Transactions & Accounts — a real actuals ledger. Browse and manage your transactions, and manage your chart of accounts (with safe, guarded deletes). Manual entry gets full add/edit/delete; everything stays read-only and safe while a scenario is active.
  • Stripe integration — connect Stripe with a read-only restricted key and Burnless pulls in your real transactions: revenue and payment-processing fees, split correctly, with vendor names attached. It backfills on connect, syncs hourly, and has a Sync now button for an immediate refresh. Find it under Connections → Integrations.
  • Integration framework — a general connector spine behind Stripe, so more sources can plug in the same way: paste a key, data flows in.
  • calculate AI tool — the AI companion can now do exact arithmetic on your numbers instead of estimating.
  • Extensibility foundation — a registry-driven domain spine and pgvector-backed memory underpin the above (mostly internal groundwork for what's next).

Database

This release adds two tables (memory, integration_credentials) and a vector index. Migrations are additive and non-destructive and apply automatically on update — your existing data is untouched.

Install / update

curl -fsSL https://burnless.ai/install | sh   # new install
burnless update                                # existing install

Verify the download:

shasum -a 256 -c SHASUMS256.txt

Full changes: #11, #12, #13, #14.