Skip to content

Commit 2276fa0

Browse files
jwesleyeclaude
andcommitted
Bump version to 0.4.3
Release changes: - Add __all__ export list to helpers.py for explicit API definition - Add comprehensive helper function documentation to README - Document all 11 helper functions with usage examples - Add merge_tool_lists, get_tool_info, and list_all_available_tools examples 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d259488 commit 2276fa0

4 files changed

Lines changed: 13 additions & 11 deletions

File tree

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,14 @@ This project provides **parsing, validation, and analysis tools** that save agen
1919
- ❌ Code refactoring (agents reason through transformations)
2020
- ❌ Project scaffolding (agents use examples effectively)
2121

22-
## 🆕 What's New in v0.4.2
22+
## 🆕 What's New in v0.4.3
2323

24-
🔍 **Enhanced Diff Previews**: Expanded diff preview from 20 to 50 lines for better context in confirmations
24+
📚 **Helper Function Documentation**: Added comprehensive documentation for all 11 helper functions with usage examples and `__all__` export
2525

2626
### Recent Updates
2727

28+
**v0.4.2** - Enhanced diff preview from 20 to 50 lines for better context
29+
2830
**v0.4.0** - Added database module with SQLite operations and safe query building
2931

3032
**v0.3.0** - Python module for syntax validation, type checking, and import analysis
@@ -324,7 +326,7 @@ print(f"Modified files: {len(status['modified'])}")
324326

325327
## Development Status
326328

327-
**Current Version**: v0.4.2
329+
**Current Version**: v0.4.3
328330
**Status**: Active Development
329331
**Focus**: Code validation and analysis tools for AI agents
330332

@@ -356,5 +358,5 @@ MIT License (same as basic-open-agent-tools)
356358

357359
---
358360

359-
**Version**: v0.4.2
361+
**Version**: v0.4.3
360362
**Last Updated**: 2025-10-17

TODO.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Coding Open Agent Tools - TODO
22

3-
**Current Version**: v0.4.1
4-
**Last Updated**: 2025-10-15
3+
**Current Version**: v0.4.3
4+
**Last Updated**: 2025-10-17
55

66
## ✅ Completed Phases
77

@@ -44,7 +44,7 @@
4444
- [x] Deprecated @adk_tool decorator (non-existent import)
4545
- [x] Updated to @strands_tool only (Google ADK uses standard callables)
4646

47-
### Current Status (v0.4.1) ✅ RELEASED
47+
### Current Status (v0.4.3) ✅ RELEASED
4848
- **Total Functions**: 154 across 7 modules
4949
- **Total Tests**: 570 passing
5050
- **Code Coverage**: 50% overall
@@ -186,7 +186,7 @@ coding-open-agent-tools/
186186

187187
---
188188

189-
**Document Version**: 3.5
190-
**Status**: Active Development - v0.4.1 Released
189+
**Document Version**: 3.6
190+
**Status**: Active Development - v0.4.3 Released
191191
**Next Milestone**: v0.5.0 Release (Configuration Validation Module)
192192
**Future**: See ROADMAP.md for complete 36-module plan through v1.0.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__"
44

55
[project]
66
name = "coding-open-agent-tools"
7-
version = "0.4.2" # Enhanced diff preview (20 → 50 lines)
7+
version = "0.4.3" # Add __all__ export and helper function documentation
88
description = "Advanced code generation and shell scripting toolkit for AI agents, complementing basic-open-agent-tools with development-focused capabilities."
99
readme = "README.md"
1010
requires-python = ">=3.9"

src/coding_open_agent_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
automation capabilities designed specifically for AI agents.
88
"""
99

10-
__version__ = "0.4.2"
10+
__version__ = "0.4.3"
1111

1212
# Import migrated modules
1313
from . import analysis, database, git, profiling, python, quality, shell

0 commit comments

Comments
 (0)