diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2a38d09639..1146e374ae 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog
+## [3.3.2]
+
+- Fix bug where OpenRouter requests would periodically not return cost/token stats, leading to context window limit errors
+- Make checkpoints more visible and keep track of restored checkpoints
+
## [3.3.0]
- Add .clineignore to block Cline from accessing specified file patterns
diff --git a/package.json b/package.json
index e5347c6b47..7276e45b8d 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "claude-dev",
"displayName": "Cline",
"description": "Autonomous coding agent right in your IDE, capable of creating/editing files, running commands, using the browser, and more with your permission every step of the way.",
- "version": "3.3.1",
+ "version": "3.3.2",
"icon": "assets/icons/icon.png",
"galleryBanner": {
"color": "#617A91",
diff --git a/webview-ui/src/components/common/CheckmarkControl.tsx b/webview-ui/src/components/common/CheckmarkControl.tsx
index 31043fb09f..b57a6a0bf6 100644
--- a/webview-ui/src/components/common/CheckmarkControl.tsx
+++ b/webview-ui/src/components/common/CheckmarkControl.tsx
@@ -149,7 +149,7 @@ export const CheckmarkControl = ({ messageTs, isCheckpointCheckedOut }: Checkmar
Compare