From b2e393e2258f260f23e68eba53018c05765ea38b Mon Sep 17 00:00:00 2001 From: Helmi Date: Sun, 10 Aug 2025 13:25:22 +0200 Subject: [PATCH 1/2] chore: prepare release v0.1.13-rc1 - Updated version to 0.1.13rc1 for TestPyPI - Updated CHANGELOG with v0.1.13 changes - Ready for TestPyPI deployment --- CHANGELOG.md | 7 ++++++- pyproject.toml | 2 +- src/ccnotify/__init__.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) 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..ca3172e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ccnotify" -version = "0.1.12" +version = "0.1.13rc1" 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..c37d19d 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.13rc1" __author__ = "Helmi" __license__ = "MIT" From 0565b9cddcb699df4555e98f7b5984c249a09b77 Mon Sep 17 00:00:00 2001 From: Helmi Date: Sun, 10 Aug 2025 13:28:38 +0200 Subject: [PATCH 2/2] chore: release v0.1.13 - Fixed false error notifications for NotebookEdit - Added optional logging with --logging flag - Improved notification filtering - Updated default Kokoro voice to af_heart --- pyproject.toml | 2 +- src/ccnotify/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ca3172e..2cc4758 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ccnotify" -version = "0.1.13rc1" +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 c37d19d..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.13rc1" +__version__ = "0.1.13" __author__ = "Helmi" __license__ = "MIT"