Skip to content

Commit 2eb48b3

Browse files
authored
v2.0.2 (#142)
1 parent 229d58c commit 2eb48b3

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [v2.0.2](https://github.com/Piebald-AI/tweakcc/releases/tag/v2.0.2) - 2025-10-31
11+
1012
- Better error handling when the prompt JSON file doesn't exist yet (#130) - @bl-ue
13+
- Add ~/.linuxbrew to the search dirs (#132) - @bl-ue
14+
- Add fnm multishell path to the search dirs (#139) - @wu-json
1115
- Cache prompt JSON files and fix download error handling (#140) - @bl-ue
1216

1317
## [v2.0.1](https://github.com/Piebald-AI/tweakcc/releases/tag/v2.0.1) - 2025-10-23

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tweakcc",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"type": "module",
55
"description": "Command-line tool to customize your Claude Code theme colors, thinking verbs and more.",
66
"main": "dist/index.js",

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const main = async () => {
1616
.description(
1717
'Command-line tool to customize your Claude Code theme colors, thinking verbs and more.'
1818
)
19-
.version('2.0.1')
19+
.version('2.0.2')
2020
.option('-d, --debug', 'enable debug mode')
2121
.option('-a, --apply', 'apply saved customizations without interactive UI');
2222
program.parse();

src/utils/patches/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ export const applyCustomization = async (
245245
if ((result = writeIgnoreMaxSubscription(content))) content = result;
246246

247247
// Apply version output modification (always enabled)
248-
if ((result = writeVersionOutput(content, '2.0.1'))) content = result;
248+
if ((result = writeVersionOutput(content, '2.0.2'))) content = result;
249249

250250
// Replace the file, breaking hard links and preserving permissions
251251
await replaceFileBreakingHardLinks(ccInstInfo.cliPath, content, 'patch');

0 commit comments

Comments
 (0)