From 90c5d45349e613c8e6ceb1be61e7cd5b2aa75b33 Mon Sep 17 00:00:00 2001 From: clawdeeo Date: Wed, 6 May 2026 23:01:27 +0000 Subject: [PATCH] release: bump agentskill version to 1.4.0 --- CHANGELOG.md | 15 +++++++++++++++ VERSION | 2 +- agentskill/lib/reference_initialization.py | 2 +- pyproject.toml | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc493db..ec9148d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.4.0] - 2026-05-06 + +### Added + +- Output profile support for `generate` and `update` commands +- Split profile for AGENTS.md generation with companion document support +- Multifile output layout support in AGENTS generation +- Default output paths when `--out` is omitted for split and multifile layouts + +### Changed + +- Multifile output directory defaults to `.agentskill` for consistency +- README enhanced with technical article link, stats section, and star history chart +- ROADMAP.md updated with detailed release planning for versions 1.4.0 to 1.15.0 + ## [1.3.0] - 2026-05-02 ### Added diff --git a/VERSION b/VERSION index f0bb29e..88c5fb8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.0 +1.4.0 diff --git a/agentskill/lib/reference_initialization.py b/agentskill/lib/reference_initialization.py index 5fd29b4..8bb53cd 100644 --- a/agentskill/lib/reference_initialization.py +++ b/agentskill/lib/reference_initialization.py @@ -17,7 +17,7 @@ ReferenceMetadata, ) -AGENTSKILL_VERSION = "1.3.0" +AGENTSKILL_VERSION = "1.4.0" def successful_reference_documents( diff --git a/pyproject.toml b/pyproject.toml index 89fd322..4c670c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "agsk" -version = "1.3.0" +version = "1.4.0" description = "Analyze repositories and synthesize AGENTS.md" readme = "README.md" requires-python = ">=3.10"