Skip to content

Commit 67161b6

Browse files
authored
chore(master): release 0.1.2 (#3)
1 parent 07fdd88 commit 67161b6

File tree

5 files changed

+24
-5
lines changed

5 files changed

+24
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.1"
2+
".": "0.1.2"
33
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
## [0.1.2](https://github.com/Xevion/usage-indicator/compare/v0.1.1...v0.1.2) (2025-11-09)
4+
5+
6+
### Features
7+
8+
* implement exponential backoff retry logic with error state management ([7773d24](https://github.com/Xevion/usage-indicator/commit/7773d24dece48f6103aba5c5f0cf0e444b988d3b))
9+
10+
11+
### Bug Fixes
12+
13+
* enforce LF line endings across all platforms ([ee97e27](https://github.com/Xevion/usage-indicator/commit/ee97e270b0e3cf801386718b592ad89a56f300d0))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "usage-indicator",
33
"private": true,
4-
"version": "0.1.0",
4+
"version": "0.1.2",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "usage-indicator"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "A system tray application for monitoring usage statistics of rate-limited cloud services."
55
authors = ["Ryan Walters"]
66
edition = "2024"

src-tauri/tauri.conf.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "usage-indicator",
4-
"version": "0.1.0",
4+
"version": "0.1.2",
55
"identifier": "com.xevion.usage-indicator",
66
"build": {
77
"beforeDevCommand": "bun run dev",
@@ -24,6 +24,12 @@
2424
"bundle": {
2525
"active": true,
2626
"targets": "all",
27-
"icon": ["icons/32x32.png", "icons/128x128.png", "icons/[email protected]", "icons/icon.icns", "icons/icon.ico"]
27+
"icon": [
28+
"icons/32x32.png",
29+
"icons/128x128.png",
30+
31+
"icons/icon.icns",
32+
"icons/icon.ico"
33+
]
2834
}
2935
}

0 commit comments

Comments
 (0)