From 35e1229fbb5ec030a3ce96f98f46ea844978fbdd Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 29 Mar 2024 16:59:46 -0400 Subject: [PATCH] toml: Sync `Cargo.toml` version with `extension.toml` (#9973) This PR syncs the version number in the `Cargo.toml` with the one in `extension.toml` for the `toml` extension, since they had gotten out-of-sync. Release Notes: - N/A --- Cargo.lock | 2 +- extensions/toml/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e466e00b43..6e85326c92 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12739,7 +12739,7 @@ dependencies = [ [[package]] name = "zed_toml" -version = "0.0.1" +version = "0.0.2" dependencies = [ "zed_extension_api 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/extensions/toml/Cargo.toml b/extensions/toml/Cargo.toml index 2a9fa721f1..ae412929dd 100644 --- a/extensions/toml/Cargo.toml +++ b/extensions/toml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zed_toml" -version = "0.0.1" +version = "0.0.2" edition = "2021" publish = false license = "Apache-2.0"