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
17 changes: 14 additions & 3 deletions .github/workflows/install-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,29 @@ jobs:
with:
submodules: recursive

- name: Cache Bun binary
- name: Cache Bun
uses: actions/cache@v3
with:
path: ~/.bun
path: |
~/.bun
${{ env.BUN_INSTALL }}
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
restore-keys: ${{ runner.os }}-bun-
restore-keys: |
${{ runner.os }}-bun-

- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest

- name: Cache QMD Database
uses: actions/cache@v3
with:
path: ~/.cache/qmd
key: ${{ runner.os }}-qmd-db
restore-keys: |
${{ runner.os }}-qmd-

- name: Run installer
run: ${{ matrix.install_cmd }}

Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [0.5.1] - 2026-03-09

### Fixed

- fix: add missing cline and copilot to default agents seed
- fix(install): remove temp HOME isolation breaking PATH dependencies

### Performance

- perf: add caching and optimize Bun install for faster CI workflows

---

## [0.5.0] - 2026-03-09

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smriti",
"version": "0.5.0",
"version": "0.5.1",
"description": "Smriti - Unified memory layer across all AI agents",
"type": "module",
"bin": {
Expand Down