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
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ jobs:
- name: Install locked dependencies
run: bun install --frozen-lockfile

- name: Install AI companion locked dependencies
working-directory: ai
run: bun install --frozen-lockfile

- name: Bind the tag to the package version
id: version
run: |
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.15.24] - 2026-08-10

### Fixed

- **Release CI installs the independently locked AI companion before recursive
tests.** The npm workflow now installs `ai/bun.lock` dependencies before the
root `bun test`, retaining the Todos AI content from the unpublished
`0.15.23` release while advancing the package to `0.15.24`.

## [0.15.23] - 2026-08-10

### Added
Expand Down
2 changes: 1 addition & 1 deletion ai/bun.lock

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

2 changes: 1 addition & 1 deletion ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"license": "Apache-2.0",
"sideEffects": false,
"peerDependencies": {
"@hasna/todos": ">=0.15.23 <1"
"@hasna/todos": ">=0.15.24 <1"
},
"dependencies": {
"@ai-sdk/groq": "^4.0.0",
Expand Down
3 changes: 2 additions & 1 deletion ai/test/manifest.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ describe("package compatibility", () => {
expect(Bun.semver.satisfies("0.15.20", range)).toBe(false);
expect(Bun.semver.satisfies("0.15.21", range)).toBe(false);
expect(Bun.semver.satisfies("0.15.22", range)).toBe(false);
expect(Bun.semver.satisfies("0.15.23", range)).toBe(true);
expect(Bun.semver.satisfies("0.15.23", range)).toBe(false);
expect(Bun.semver.satisfies("0.15.24", range)).toBe(true);
expect(Bun.semver.satisfies("1.0.0", range)).toBe(false);
expect(Bun.semver.satisfies(rootManifest.version, range)).toBe(true);
});
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": "@hasna/todos",
"version": "0.15.23",
"version": "0.15.24",
"description": "Universal task management for AI coding agents - CLI + MCP server + interactive TUI",
"type": "module",
"main": "dist/index.js",
Expand Down
Loading