From ab68333d17afab9319d0516b311a71bde828f900 Mon Sep 17 00:00:00 2001 From: Jakub Panek Date: Wed, 31 Jul 2024 13:14:31 +0200 Subject: [PATCH] release: taplo-cli 0.9.3 --- crates/taplo-cli/CHANGELOG.md | 6 ++++++ crates/taplo-cli/Cargo.toml | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/crates/taplo-cli/CHANGELOG.md b/crates/taplo-cli/CHANGELOG.md index d4d9b0a79..9da360813 100644 --- a/crates/taplo-cli/CHANGELOG.md +++ b/crates/taplo-cli/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.9.3 + +### Fixes + +- Regression: `[rule.formatting]` completely overrides the default outside of the specified sections ([#634](https://github.com/tamasfe/taplo/issues/634)) + ## 0.9.2 This is a re-release of 0.9.1 diff --git a/crates/taplo-cli/Cargo.toml b/crates/taplo-cli/Cargo.toml index b419ddbb9..4880816d2 100644 --- a/crates/taplo-cli/Cargo.toml +++ b/crates/taplo-cli/Cargo.toml @@ -4,7 +4,7 @@ description = "A CLI for Taplo TOML toolkit" license = "MIT" edition = "2021" name = "taplo-cli" -version = "0.9.2" +version = "0.9.3" homepage = "https://taplo.tamasfe.dev" repository = "https://github.com/tamasfe/taplo" categories = ["development-tools", "command-line-utilities"] @@ -34,9 +34,9 @@ reqwest = { version = "0.11.9", default-features = false, features = [ schemars = "0.8" serde = "1" serde_json = "1" -taplo = { version = "0.13.1", path = "../taplo", features = ["serde"] } -taplo-common = { version = "0.5.1", path = "../taplo-common" } -taplo-lsp = { version = "0.7.1", path = "../taplo-lsp", default-features = false, optional = true } +taplo = { version = "0.13.2", path = "../taplo", features = ["serde"] } +taplo-common = { version = "0.5.2", path = "../taplo-common" } +taplo-lsp = { version = "0.7.2", path = "../taplo-lsp", default-features = false, optional = true } time = { version = "0.3", features = ["parsing"] } toml = "0.7" tracing = "0.1.29" @@ -56,7 +56,7 @@ tokio = { version = "1.24.2", features = [ "rt-multi-thread", "parking_lot", ], default-features = false } -lsp-async-stub = { version = "0.6.0", path = "../lsp-async-stub", features = [ +lsp-async-stub = { version = "0.6.4", path = "../lsp-async-stub", features = [ "tokio-tcp", "tokio-stdio", ] }