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
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const PLATFORM_MARKETPLACE_REPO: &str = "warpdotdev/claude-code-warp-internal";

// Keep in sync with the plugin version in warpdotdev/claude-code-warp.
// (See the Versioning section of that repo's README.)
const MINIMUM_PLUGIN_VERSION: &str = "2.0.0";
const MINIMUM_PLUGIN_VERSION: &str = "2.1.0";

pub(super) struct ClaudeCodePluginManager {
executor: LocalCommandExecutor,
Expand Down
13 changes: 0 additions & 13 deletions app/src/terminal/cli_agent_sessions/plugin_manager/claude_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,19 +133,6 @@ fn not_installed_via_trait_when_claude_home_empty() {
assert!(!result);
}

#[test]

@harryalbert harryalbert May 18, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

drive by edit, but these tests seem unnecessary (they just check that the output of some simple fn with no inputs is equal to some value)

fn can_auto_install_is_true() {
assert!(ClaudeCodePluginManager::new(None, None, None).can_auto_install());
}

#[test]
fn minimum_version() {
Comment thread
harryalbert marked this conversation as resolved.
assert_eq!(
ClaudeCodePluginManager::new(None, None, None).minimum_plugin_version(),
"2.0.0"
);
}

#[test]
fn installed_version_returns_version_when_present() {
let dir = tempfile::tempdir().unwrap();
Expand Down
Loading