Skip to content

Commit 9d318ad

Browse files
committed
chore: release 1.10.0
1 parent 3aabc0f commit 9d318ad

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@ cn usage status
3333
<img src="assets/multi-tools-support-02.png" width="48%" alt="All tools enabled"/>
3434
</p>
3535

36-
[![Version](https://img.shields.io/badge/version-1.9.1-blue.svg)](https://github.com/mylee04/code-notify/releases)
36+
[![Version](https://img.shields.io/badge/version-1.10.0-blue.svg)](https://github.com/mylee04/code-notify/releases)
3737
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
3838
[![macOS](https://img.shields.io/badge/macOS-supported-green.svg)](https://www.apple.com/macos)
3939
[![Linux](https://img.shields.io/badge/Linux-supported-green.svg)](https://www.linux.org/)
4040
[![Windows](https://img.shields.io/badge/Windows-supported-green.svg)](https://www.microsoft.com/windows)
4141

4242
---
4343

44-
## What's New in v1.9.1
44+
## What's New in v1.10.0
4545

46-
- **Trusted npm publishing**: GitHub Actions can publish through npm Trusted Publisher without a long-lived npm token
47-
- **Community metadata**: Root contributing, code of conduct, security, and funding files improve package indexers
48-
- **README refresh**: npm package metadata will include the latest usage reset setup and voice sample links
46+
- **One-command usage setup**: `cn usage setup --watch` configures Codex/Claude usage alerts and starts the background watcher
47+
- **Background usage watcher**: macOS/Linux users can start, stop, restart, and inspect usage watching with `cn usage watch ...`
48+
- **Usage alert docs**: README now shows the terminal setup flow and Slack/Discord reset alert routing
4949

5050
---
5151

bin/code-notify

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
set -e
77

88
# Version
9-
VERSION="1.9.1"
9+
VERSION="1.10.0"
1010

1111
# Determine the directory where the script is located (resolve symlinks)
1212
SCRIPT_PATH="${BASH_SOURCE[0]}"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-notify",
3-
"version": "1.9.1",
3+
"version": "1.10.0",
44
"description": "Desktop notifications for Claude Code, OpenAI Codex, and Gemini CLI",
55
"license": "MIT",
66
"homepage": "https://github.com/mylee04/code-notify#readme",

scripts/install-windows.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ param(
2020
$ErrorActionPreference = "Stop"
2121

2222
# Version
23-
$VERSION = "1.9.1"
23+
$VERSION = "1.10.0"
2424

2525
# Colors and formatting
2626
function Write-Success { param([string]$Message) Write-Host "[OK] $Message" -ForegroundColor Green }
@@ -107,7 +107,7 @@ function Install-ClaudeNotify {
107107
# Code-Notify PowerShell Module
108108
# https://github.com/mylee04/code-notify
109109
110-
$script:VERSION = "1.9.1"
110+
$script:VERSION = "1.10.0"
111111
$script:ClaudeHome = if ($env:CLAUDE_HOME) { $env:CLAUDE_HOME } else { "$env:USERPROFILE\.claude" }
112112
$script:DefaultSettingsFile = "$script:ClaudeHome\settings.json"
113113
$script:AlternateSettingsFile = "$env:USERPROFILE\.config\.claude\settings.json"

0 commit comments

Comments
 (0)