@hasna/todos 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli/index.js CHANGED
@@ -2138,7 +2138,7 @@ function runMigrations(db) {
2138
2138
  const result = db.query("SELECT MAX(id) as max_id FROM _migrations").get();
2139
2139
  const currentLevel = result?.max_id ?? 0;
2140
2140
  for (let i = currentLevel;i < MIGRATIONS.length; i++) {
2141
- db.run(MIGRATIONS[i]);
2141
+ db.exec(MIGRATIONS[i]);
2142
2142
  }
2143
2143
  } catch {
2144
2144
  for (const migration of MIGRATIONS) {
package/dist/index.js CHANGED
@@ -215,7 +215,7 @@ function runMigrations(db) {
215
215
  const result = db.query("SELECT MAX(id) as max_id FROM _migrations").get();
216
216
  const currentLevel = result?.max_id ?? 0;
217
217
  for (let i = currentLevel;i < MIGRATIONS.length; i++) {
218
- db.run(MIGRATIONS[i]);
218
+ db.exec(MIGRATIONS[i]);
219
219
  }
220
220
  } catch {
221
221
  for (const migration of MIGRATIONS) {
package/dist/mcp/index.js CHANGED
@@ -4265,7 +4265,7 @@ function runMigrations(db) {
4265
4265
  const result = db.query("SELECT MAX(id) as max_id FROM _migrations").get();
4266
4266
  const currentLevel = result?.max_id ?? 0;
4267
4267
  for (let i = currentLevel;i < MIGRATIONS.length; i++) {
4268
- db.run(MIGRATIONS[i]);
4268
+ db.exec(MIGRATIONS[i]);
4269
4269
  }
4270
4270
  } catch {
4271
4271
  for (const migration of MIGRATIONS) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/todos",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Universal task management for AI coding agents - CLI + MCP server + interactive TUI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",