Skip to content

Commit 89f0b76

Browse files
0xkazclaude
andcommitted
🏷️ Release v0.0.3
- Add English as default language - Add dry-run mode for previewing messages - Add detailed change summary statistics - Add push confirmation prompt - Fix version numbering to follow proper semver 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 10e3566 commit 89f0b76

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

CHANGELOG.md

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,27 @@ 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] - 2024-06-13
8+
## [0.0.3] - 2024-06-13
9+
10+
### Added
11+
- `--dry-run` flag for generating commit messages without committing
12+
- `--summary` flag for displaying detailed change statistics
13+
- File-by-file statistics
14+
- Lines added/deleted count
15+
- File type breakdown
916

1017
### Changed
1118
- **BREAKING**: Changed default interface language from Japanese to English
1219
- All system messages, prompts, and outputs now default to English
1320
- Help text and usage information displayed in English
1421
- Error messages and status updates in English
1522
- Comments in source code translated to English
23+
- Improved change summary display with emoji indicators
1624

1725
### Fixed
1826
- Consistent language experience for international users
1927
- Better compatibility with global development teams
2028

21-
## [0.1.0] - 2024-06-13
22-
23-
### Added
24-
- `--dry-run` flag for generating commit messages without committing
25-
- `--summary` flag for displaying detailed change statistics
26-
- File-by-file statistics
27-
- Lines added/deleted count
28-
- File type breakdown
29-
30-
### Changed
31-
- Improved change summary display with emoji indicators
32-
3329
## [0.0.2] - 2024-06-13
3430

3531
### Added

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,9 @@ git:
178178
auto_push: true
179179
```
180180
181-
## 🚀 What's New in v0.1.0
181+
## 🚀 What's New in v0.0.3
182182
183+
- **English Default**: All messages and prompts now in English (Japanese available with `-l ja`)
183184
- **Dry Run Mode**: Preview commit messages without committing using `--dry-run`
184185
- **Change Summary**: Get detailed statistics about your changes with `--summary`
185186
- **Push Confirmation**: Now prompts before pushing (use `-y` to skip)

src/claude-auto-commit.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22

33
# Claude Auto-Commit - AI-powered Git commit message generator
4-
# Version: 0.2.0
4+
# Version: 0.0.3
55
# Homepage: https://claude-auto-commit.0xkaz.com
66

7-
VERSION="0.2.0"
7+
VERSION="0.0.3"
88
REPO="0xkaz/claude-auto-commit"
99
CONFIG_DIR="$HOME/.claude-auto-commit"
1010
CONFIG_FILE="$CONFIG_DIR/config.yml"

0 commit comments

Comments
 (0)