Skip to content

Commit b8da48f

Browse files
committed
Release v0.2.2: Documentation alignment with pure Python implementation
Updated README.md to accurately reflect v0.2.0+ architecture changes: - Removed outdated jq and curl dependencies from requirements - Updated troubleshooting section script references from .sh to .py files - Fixed uninstall instructions with correct repository URL and file patterns - Complete documentation alignment with pure Python implementation
1 parent be141f8 commit b8da48f

2 files changed

Lines changed: 14 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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.2] - 2025-07-08
9+
10+
### 📚 Documentation Updates
11+
- **Updated README.md** - Removed outdated `jq` and `curl` dependencies from requirements
12+
- **Fixed troubleshooting section** - Updated script references from `.sh` to `.py` files
13+
- **Corrected uninstall instructions** - Fixed repository URL and script file patterns
14+
- **Complete documentation alignment** - README now accurately reflects v0.2.0+ pure Python architecture
15+
816
## [0.2.1] - 2025-07-07
917

1018
### 🐛 Critical Bug Fix

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ chmod +x install.sh
3131
## 📋 Requirements
3232

3333
- [Claude Code](https://docs.anthropic.com/en/docs/claude-code) installed
34-
- `jq` for JSON processing
35-
- `curl` for HTTP requests
34+
- Python 3 (universally available)
3635
- Discord webhook URL
3736

3837
## 🎯 Quick Start
@@ -161,17 +160,17 @@ Team members can then add their own webhook:
161160

162161
1. Verify scripts exist and are executable:
163162
```bash
164-
ls -la ~/.claude/hooks/discord*.sh
163+
ls -la ~/.claude/hooks/*discord*.py
165164
```
166165

167166
2. Test script manually:
168167
```bash
169-
echo '{}' | ~/.claude/hooks/discord-notify.sh
168+
echo '{}' | ~/.claude/hooks/stop-discord.py
170169
```
171170

172171
3. Check script permissions:
173172
```bash
174-
chmod +x ~/.claude/hooks/discord*.sh
173+
chmod +x ~/.claude/hooks/*discord*.py
175174
```
176175

177176
### Commands Not Available
@@ -192,10 +191,10 @@ Team members can then add their own webhook:
192191

193192
```bash
194193
# Download and run uninstall script
195-
curl -fsSL https://raw.githubusercontent.com/USERNAME/claude-discord-integration/main/uninstall.sh | bash
194+
curl -fsSL https://raw.githubusercontent.com/jubalm/claude-code-discord/main/uninstall.sh | bash
196195

197196
# Or manually remove files
198-
rm -f ~/.claude/hooks/discord*.sh
197+
rm -f ~/.claude/hooks/*discord*.py
199198
rm -rf ~/.claude/commands/discord
200199
```
201200

0 commit comments

Comments
 (0)