From 33c6412e5a21b956773f1b7966841c7b42281ccf Mon Sep 17 00:00:00 2001 From: Kevinlee49 Date: Mon, 3 Aug 2026 21:59:42 -0500 Subject: [PATCH] chore: prepare v1.11.1 release --- bin/code-notify | 2 +- package.json | 2 +- scripts/install-windows.ps1 | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/code-notify b/bin/code-notify index 187ea8c..25612b1 100755 --- a/bin/code-notify +++ b/bin/code-notify @@ -6,7 +6,7 @@ set -e # Version -VERSION="1.11.0" +VERSION="1.11.1" # Determine the directory where the script is located (resolve symlinks) SCRIPT_PATH="${BASH_SOURCE[0]}" diff --git a/package.json b/package.json index 0a02388..18718e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "code-notify", - "version": "1.11.0", + "version": "1.11.1", "description": "Desktop notifications and usage reset alerts for Claude Code, Codex CLI, Gemini CLI, Oh My Pi, and AI coding agents", "license": "MIT", "homepage": "https://github.com/mylee04/code-notify#readme", diff --git a/scripts/install-windows.ps1 b/scripts/install-windows.ps1 index 83f00b8..71d6531 100644 --- a/scripts/install-windows.ps1 +++ b/scripts/install-windows.ps1 @@ -20,7 +20,7 @@ param( $ErrorActionPreference = "Stop" # Version -$VERSION = "1.11.0" +$VERSION = "1.11.1" # Colors and formatting function Write-Success { param([string]$Message) Write-Host "[OK] $Message" -ForegroundColor Green } @@ -107,7 +107,7 @@ function Install-ClaudeNotify { # Code-Notify PowerShell Module # https://github.com/mylee04/code-notify -$script:VERSION = "1.11.0" +$script:VERSION = "1.11.1" $script:ClaudeHome = if ($env:CLAUDE_HOME) { $env:CLAUDE_HOME } else { "$env:USERPROFILE\.claude" } $script:DefaultSettingsFile = "$script:ClaudeHome\settings.json" $script:AlternateSettingsFile = "$env:USERPROFILE\.config\.claude\settings.json"