diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fe3a82..fed31fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- +## [0.18.0] - 2026-04-17 + +### New Features +- Add support for configurable agents and projects directories with default and additional paths + ## [0.17.1] - 2026-04-17 ### New Features diff --git a/changelog-content.md b/changelog-content.md index 749c14f..97c75dd 100644 --- a/changelog-content.md +++ b/changelog-content.md @@ -1,9 +1,2 @@ ### New Features -- Add schedules subcommands to CLI for managing scheduled agent tasks -- Add cron scheduler module to daemon for automated agent execution - -### Bug Fixes -- Fix project loading to automatically recover from ghost entries and sync missing remote projects - -### Improvements -- Update core dependencies to latest versions +- Add support for configurable agents and projects directories with default and additional paths diff --git a/package-lock.json b/package-lock.json index 48bb9b5..5776109 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@agentage/cli", - "version": "0.17.1", + "version": "0.18.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@agentage/cli", - "version": "0.17.1", + "version": "0.18.0", "license": "MIT", "dependencies": { "@agentage/core": "0.9.0", diff --git a/package.json b/package.json index 61151b8..c7677a5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@agentage/cli", - "version": "0.17.1", + "version": "0.18.0", "description": "Agentage CLI and daemon — control plane for AI agents", "type": "module", "main": "./dist/index.js",