diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 001eb2c..c05df9b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.2" + ".": "0.1.3" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e6e0e40..32c6ceb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.1.3](https://github.com/mpecan/rusted-claude-meter/compare/v0.1.2...v0.1.3) (2026-07-22) + + +### Bug Fixes + +* **pace:** surface overuse early and grade it against the limit ([#48](https://github.com/mpecan/rusted-claude-meter/issues/48)) ([f90c034](https://github.com/mpecan/rusted-claude-meter/commit/f90c0349d1d2c55c14a1cd91b0c12f2ab4768e31)) +* **release:** render cask URLs with dots, not %20 ([#49](https://github.com/mpecan/rusted-claude-meter/issues/49)) ([25c9fbd](https://github.com/mpecan/rusted-claude-meter/commit/25c9fbd813b40a05bdced262a01fe164b2416834)) + + +### Documentation + +* credit rshivane for the pace-based tracking design ([#46](https://github.com/mpecan/rusted-claude-meter/issues/46)) ([38d4f6f](https://github.com/mpecan/rusted-claude-meter/commit/38d4f6f3b590b3cfc17a76ab68770e96874aa868)) + ## [0.1.2](https://github.com/mpecan/rusted-claude-meter/compare/v0.1.1...v0.1.2) (2026-07-21) diff --git a/Cargo.toml b/Cargo.toml index a159d21..72d5ee6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ ] [workspace.package] -version = "0.1.2" # x-release-please-version +version = "0.1.3" # x-release-please-version edition = "2024" license = "MIT" authors = ["Matjaz Domen Pecan"] diff --git a/package.json b/package.json index 491f9d7..7c23321 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "rusted-claude-meter", "private": true, - "version": "0.1.2", + "version": "0.1.3", "description": "Cross-platform (macOS + Linux) tray app showing your Claude plan usage — a Tauri v2 port of ClaudeMeter.", "license": "MIT", "type": "module", diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0b3f93b..1612c6f 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Rusted Claude Meter", - "version": "0.1.2", + "version": "0.1.3", "identifier": "com.mpecan.rusted-claude-meter", "build": { "beforeDevCommand": "npm run dev",