From 5f57efb2660a3bd21d4dc929f118b4165f3e9307 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Tue, 23 Jul 2024 10:28:09 -0400 Subject: [PATCH] astro: Align version numbers in `extension.toml` and `Cargo.toml` (#15011) This PR aligns the version numbers in `extension.toml` and `Cargo.toml` for the Astro extension, as they had gotten out-of-sync. Release Notes: - N/A --- Cargo.lock | 2 +- extensions/astro/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0f4bb6bebb..559b802cf2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13853,7 +13853,7 @@ dependencies = [ [[package]] name = "zed_astro" -version = "0.0.2" +version = "0.0.3" dependencies = [ "zed_extension_api 0.0.6", ] diff --git a/extensions/astro/Cargo.toml b/extensions/astro/Cargo.toml index 02203bc63d..d090873ccc 100644 --- a/extensions/astro/Cargo.toml +++ b/extensions/astro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zed_astro" -version = "0.0.2" +version = "0.0.3" edition = "2021" publish = false license = "Apache-2.0"