Skip to content

Commit 0e62e7c

Browse files
committed
Merge branch 'main' of github.com:Wirasm/claudecode-utils
2 parents 3e0fc66 + d47082d commit 0e62e7c

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ 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+
## [1.1.1] - 2025-05-16
9+
10+
### Changed
11+
- Updated version numbers in pyproject.toml and __init__.py
12+
- Maintenance release with no functional changes
13+
14+
## [1.1.0] - 2025-05-16
15+
16+
### Added
17+
- Added enhanced code review command-line interface with Typer framework
18+
- Implemented multi-format support for review reports (JSON and Markdown)
19+
- Added simple Claude Code review runner CLI tool
20+
- Added functionality to save code review reports to repository root directory
21+
- Added JSON output format option for code review reports
22+
23+
### Changed
24+
- Improved CLI structure to use Typer for better command organization
25+
- Enhanced documentation for the review runner module
26+
827
## [1.0.0] - 2025-05-16
928

1029
### Added

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"
44

55
[project]
66
name = "claudecode-utility-library"
7-
version = "1.0.0"
7+
version = "1.1.1"
88
description = "A utility package for Claude code generation"
99
readme = "README.md"
1010
requires-python = ">=3.12"

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""ClaudeCode utility library."""
22

3-
__version__ = "1.0.0"
3+
__version__ = "1.1.1"

0 commit comments

Comments
 (0)