Bump version to 1.6.1

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ryan Ward
2026-06-04 09:57:18 -05:00
co-authored by Claude Opus 4.6
parent a309006458
commit 840bc4d244
4 changed files with 1 additions and 10 deletions
-3
View File
@@ -586,9 +586,6 @@ pub fn extract_system_prompt(request: &api::Request) -> Option<String> {
prompt.push_str(&format!("- Git branch: {}\n", git.branch));
}
}
if let Some(ts) = &context.current_time {
prompt.push_str(&format!("- Current time (UTC): {}\n", ts));
}
prompt.push('\n');
if !context.project_rules.is_empty() {
-3
View File
@@ -867,9 +867,6 @@ pub fn extract_system_prompt(request: &api::Request) -> Option<String> {
prompt.push_str(&format!("- Git branch: {}\n", git.branch));
}
}
if let Some(ts) = &context.current_time {
prompt.push_str(&format!("- Current time (UTC): {}\n", ts));
}
prompt.push('\n');
if !context.project_rules.is_empty() {
-3
View File
@@ -148,9 +148,6 @@ impl PromptBuilder {
if !ctx.git_branch.is_empty() {
lines.push(format!("- Git branch: {}", ctx.git_branch));
}
if !ctx.current_time.is_empty() {
lines.push(format!("- Current time (UTC): {}", ctx.current_time));
}
Some(lines.join("\n"))
}