Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.13] - 2025-08-10

### Fixed
- NotebookEdit operations no longer trigger false error notifications
- Input needed alerts only appear for actual permission requests
- Empty error fields in tool responses are now properly ignored
- Platform compatibility prompts now respect quiet mode

### Added
- Optional logging with `--logging` flag during installation
- Debug logging for notification triggers to help troubleshooting
- Keyword filtering for permission-related notifications
- Comprehensive release workflow documentation

### Changed
- Error detection logic now checks for non-empty error values
- Notification filtering improved to reduce false positives
- Refactored replacements.json structure to eliminate duplication
- Updated default Kokoro voice to af_heart

## [0.1.12] - 2025-08-04

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ccnotify"
version = "0.1.12"
version = "0.1.13"
description = "Intelligent notification system for Claude Code with audio feedback"
authors = [
{name = "Frank Helmschrott", email = "frank@helmschrott.de"}
Expand Down
2 changes: 1 addition & 1 deletion src/ccnotify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CCNotify - Intelligent notification system for Claude Code with audio feedback
"""

__version__ = "0.1.12"
__version__ = "0.1.13"
__author__ = "Helmi"
__license__ = "MIT"

Expand Down