From 3110fb03d60c0fd69f5c0d645b2866bd95516238 Mon Sep 17 00:00:00 2001 From: Haris <4259838+Wulf@users.noreply.github.com> Date: Sat, 28 Oct 2023 19:35:07 -0400 Subject: [PATCH] 10.0.0 - Nothing major but potentially unexpected changes, see 73391ef --- Cargo.lock | 4 ++-- create-rust-app/Cargo.toml | 2 +- create-rust-app_cli/Cargo.toml | 2 +- create-rust-app_cli/src/content/project.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5627c8fb..49f814c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1178,7 +1178,7 @@ dependencies = [ [[package]] name = "create-rust-app" -version = "9.3.2" +version = "10.0.0" dependencies = [ "actix-files", "actix-http", @@ -1228,7 +1228,7 @@ dependencies = [ [[package]] name = "create-rust-app_cli" -version = "9.3.2" +version = "10.0.0" dependencies = [ "Inflector", "anyhow", diff --git a/create-rust-app/Cargo.toml b/create-rust-app/Cargo.toml index c99ec23d..a6844be5 100644 --- a/create-rust-app/Cargo.toml +++ b/create-rust-app/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "create-rust-app" description = "Set up a modern rust+react web app by running one command." -version = "9.3.2" +version = "10.0.0" edition = "2018" authors = ["Haris <4259838+Wulf@users.noreply.github.com>"] readme = "../README.md" diff --git a/create-rust-app_cli/Cargo.toml b/create-rust-app_cli/Cargo.toml index 218f8da8..15b4a665 100644 --- a/create-rust-app_cli/Cargo.toml +++ b/create-rust-app_cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "create-rust-app_cli" description = "Set up a modern rust+react web app by running one command." -version = "9.3.2" +version = "10.0.0" authors = ["Haris <4259838+Wulf@users.noreply.github.com>"] edition = "2018" readme = "../README.md" diff --git a/create-rust-app_cli/src/content/project.rs b/create-rust-app_cli/src/content/project.rs index e8c75c46..456cd719 100644 --- a/create-rust-app_cli/src/content/project.rs +++ b/create-rust-app_cli/src/content/project.rs @@ -41,7 +41,7 @@ struct Asset; // version.to_string() // } fn get_current_cra_lib_version() -> String { - "9.2.2".to_string() + "10.0.0".to_string() } #[derive(Clone)]