Skip to content
This repository was archived by the owner on Jun 21, 2025. It is now read-only.

Commit 24ccdbf

Browse files
committed
chore: Bump version to 0.2.0 with updated changelog
1 parent 90e3b1b commit 24ccdbf

4 files changed

Lines changed: 43 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.0] - 2025-05-01
9+
10+
### Added
11+
- Enhanced software engineer agent with specialized sub-agents:
12+
- Code Quality agent for linting and best practices
13+
- Improved Code Review capabilities
14+
- Enhanced Debugging sub-agent
15+
- Design Pattern recommendations
16+
- Improved DevOps assistant
17+
- Documentation generation
18+
- Testing support with framework detection
19+
- New code analysis tools and capabilities in the software engineer agent
20+
- Additional end-to-end test coverage for CLI commands and integrations
21+
22+
### Changed
23+
- Improved CI/CD pipeline with uv build and publish workflows
24+
- Enhanced GitHub Actions with trusted publishing support
25+
- Updated documentation to reflect current features and usage
26+
- Reorganized agent prompts for better specialized assistance
27+
- Strengthened security in command execution
28+
29+
### Fixed
30+
- Multiple end-to-end test pipeline issues
31+
- Corrected license specifier in package metadata
32+
- Fixed versioning mechanism to properly display CLI version
33+
- Improved error handling across various modules
34+
35+
### Security
36+
- Added secure token management for package publishing
37+
- Enhanced validation of file operations
38+
839
## [0.1.3] - 2025-04-29
940

1041
### Added

code_agent/__init__.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
try:
2-
from importlib.metadata import version
1+
"""Code Agent CLI"""
32

4-
__version__ = version("cli-code-agent")
5-
except ImportError:
6-
__version__ = "0.1.0" # Fallback version
3+
from .version import __version__

code_agent/version.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
"""Code Agent CLI Version"""
2+
3+
try:
4+
from importlib.metadata import version
5+
6+
__version__ = version("cli-code-agent")
7+
except ImportError:
8+
__version__ = "0.2.0" # Fallback version

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cli-code-agent"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
description = "CLI agent for interacting with LLMs and local environment"
55
authors = [
66
{name = "James Nguyen", email = "git@nocentre.net"}
@@ -127,7 +127,7 @@ directory = "htmlcov"
127127
# projectKey = "BlueCentre_code-agent"
128128
# organization = "bluecentre"
129129
# projectName = "code-agent"
130-
# projectVersion = "0.1.3"
130+
# projectVersion = "0.2.0"
131131
# sources = "code_agent"
132132
# tests = "tests"
133133
# python.coverage.reportPaths = "coverage.xml"

0 commit comments

Comments
 (0)