diff --git a/CHANGELOG.md b/CHANGELOG.md index deb4c55..757a522 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 00d6898..2cc4758 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"} diff --git a/src/ccnotify/__init__.py b/src/ccnotify/__init__.py index 55f8634..66c7033 100644 --- a/src/ccnotify/__init__.py +++ b/src/ccnotify/__init__.py @@ -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"