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
2 changes: 1 addition & 1 deletion .claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "agent-estimate",
"description": "Effort estimation for AI coding agents — PERT three-point estimation with METR reliability thresholds and wave planning",
"version": "0.3.0",
"version": "0.4.0",
"author": {
"name": "haoranc"
},
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.0] - 2026-02-26

### Changed
- Relicensed the project from MIT to Apache License 2.0; added `NOTICE` and updated license metadata across package and plugin artifacts. (#73)

## [0.3.0] - 2026-02-23

### Added
Expand Down Expand Up @@ -44,7 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Modifier flags: `--warm-context`, `--spec-clarity`, `--issues`
- PyPI package: `pip install agent-estimate`

[0.4.0]: https://github.com/haoranc/agent-estimate/releases/tag/v0.4.0
[0.3.0]: https://github.com/haoranc/agent-estimate/releases/tag/v0.3.0
[0.2.0]: https://github.com/haoranc/agent-estimate/releases/tag/v0.2.0
[0.1.0]: https://github.com/haoranc/agent-estimate/releases/tag/v0.1.0

2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ inputs:
required: false
default: '3.12'
version:
description: 'agent-estimate version to install (e.g. "0.3.0"). Omit for latest.'
description: 'agent-estimate version to install (e.g. "0.4.0"). Omit for latest.'
required: false
token:
description: 'GitHub token for issue fetching and PR comments'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "agent-estimate"
version = "0.3.0"
version = "0.4.0"
description = "Effort estimation for AI coding agents — PERT + METR + wave planning"
readme = "README.md"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/agent_estimate/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version constants for agent-estimate."""

__version__ = "0.3.0"
__version__ = "0.4.0"
2 changes: 1 addition & 1 deletion tests/unit/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@


def test_version_string_present() -> None:
assert __version__ == "0.3.0"
assert __version__ == "0.4.0"