Updated version to 1.1.0

This commit is contained in:
Eric Ratliff
2026-01-31 14:17:51 -06:00
parent d2cc62e32f
commit 71824a9dc7
7 changed files with 13 additions and 13 deletions

View File

@@ -15,7 +15,7 @@ fn test_config_create_and_save() {
assert_eq!(config.project_name, "test-robot");
assert_eq!(config.ftc_sdk_path, sdk_path);
assert_eq!(config.weevil_version, "1.0.0");
assert_eq!(config.weevil_version, "1.1.0");
// Save and reload
config.save(temp_dir.path()).unwrap();
@@ -45,7 +45,7 @@ fn test_config_toml_format() {
let content = fs::read_to_string(temp_dir.path().join(".weevil.toml")).unwrap();
assert!(content.contains("project_name = \"my-robot\""));
assert!(content.contains("weevil_version = \"1.0.0\""));
assert!(content.contains("weevil_version = \"1.1.0\""));
assert!(content.contains("ftc_sdk_path"));
}