Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [v4.0.11](https://github.com/Piebald-AI/tweakcc/releases/tag/v4.0.11) - 2026-03-05

- Fix AGENTS.md patch replacing CLAUDE.md content instead of falling back (#579) - @TyceHerrman
- Move context-limit patch to opt-in, add 200K fallback (#577) - @liafonx
- Make model customizations configurable and update models to latest (#572) - @liafonx
- Support Claude Code 2.1.69 module path (#585) - @zigazaga4

## [v4.0.10](https://github.com/Piebald-AI/tweakcc/releases/tag/v4.0.10) - 2026-02-27
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tweakcc",
"version": "4.0.10",
"version": "4.0.11",
"type": "module",
"description": "Command-line tool to customize your Claude Code theme colors, thinking verbs and more.",
"main": "dist/lib/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ const main = async () => {
.description(
'Command-line tool to customize your Claude Code theme colors, thinking verbs and more.'
)
.version('4.0.10')
.version('4.0.11')
.option('-d, --debug', 'enable debug mode')
.option('-v, --verbose', 'enable verbose debug mode (includes diffs)')
.option('--show-unchanged', 'show unchanged diffs (requires --verbose)')
Expand Down
2 changes: 1 addition & 1 deletion src/patches/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ export const applyCustomization = async (
fn: c =>
writePatchesAppliedIndication(
c,
'4.0.10',
'4.0.11',
legacyItems,
showTweakccVersion,
showPatchesApplied
Expand Down