this repo has no description
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ› Fix missing v prefix in git dep declaration for shapemaker new

+1 -2
+1 -2
src/cli/new.rs
··· 76 76 branch: None, 77 77 rev: None, 78 78 tag: match env::var("CARGO_PKG_VERSION") { 79 - Ok(version) => Some(version), 79 + Ok(version) => Some(format!("v{version}")), 80 80 Err(_) => None, 81 81 }, 82 82 }, ··· 121 121 ) 122 122 .trim(), 123 123 )?; 124 - 125 124 126 125 run::run_project(&package_path)?; 127 126