From 3c3eb7b15b6413a2336f8163f467b8b5aba9175c Mon Sep 17 00:00:00 2001 From: Victorien Elvinger Date: Fri, 15 Sep 2023 15:06:36 +0200 Subject: [PATCH] refactor: take review into account --- CHANGELOG.md | 4 ++-- .../src/analyzers/nursery/no_confusing_void_type.rs | 2 +- website/src/content/docs/internals/changelog.mdx | 4 ++-- .../src/content/docs/linter/rules/no-confusing-void-type.md | 2 +- website/src/pages/schemas/{1.2 => 1.2.0}/schema.json.js | 0 5 files changed, 6 insertions(+), 6 deletions(-) rename website/src/pages/schemas/{1.2 => 1.2.0}/schema.json.js (100%) diff --git a/CHANGELOG.md b/CHANGELOG.md index a98f1648cc0d..d3873f59378e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ Read our [guidelines to categorize a change](https://biomejs.dev/internals/versi New entries must be placed in a section entitled `Unreleased`. Read our [guidelines for writing a good changelog entry](https://github.com/biomejs/biome/blob/main/CONTRIBUTING.md#changelog). -## 1.2.0 (2023-09-16) +## 1.2.0 (2023-09-15) ### CLI @@ -157,7 +157,7 @@ The following rules are promoted: - Improve server binary resolution when using certain package managers, notably pnpm. - The new strategy is to point to `node_modules/.bin/biome`` path, + The new strategy is to point to `node_modules/.bin/biome` path, which is consistent for all package managers. ## 1.1.2 (2023-09-07) diff --git a/crates/biome_js_analyze/src/analyzers/nursery/no_confusing_void_type.rs b/crates/biome_js_analyze/src/analyzers/nursery/no_confusing_void_type.rs index 957a1a5967ca..f2df6e6fae91 100644 --- a/crates/biome_js_analyze/src/analyzers/nursery/no_confusing_void_type.rs +++ b/crates/biome_js_analyze/src/analyzers/nursery/no_confusing_void_type.rs @@ -47,7 +47,7 @@ declare_rule! { /// printArg(undefined); /// ``` pub(crate) NoConfusingVoidType { - version: "1.2", + version: "1.2.0", name: "noConfusingVoidType", recommended: false, } diff --git a/website/src/content/docs/internals/changelog.mdx b/website/src/content/docs/internals/changelog.mdx index 5ae38d7f27d8..b5696f514152 100644 --- a/website/src/content/docs/internals/changelog.mdx +++ b/website/src/content/docs/internals/changelog.mdx @@ -14,7 +14,7 @@ Read our [guidelines to categorize a change](https://biomejs.dev/internals/versi New entries must be placed in a section entitled `Unreleased`. Read our [guidelines for writing a good changelog entry](https://github.com/biomejs/biome/blob/main/CONTRIBUTING.md#changelog). -## 1.2.0 (2023-09-16) +## 1.2.0 (2023-09-15) ### CLI @@ -163,7 +163,7 @@ The following rules are promoted: - Improve server binary resolution when using certain package managers, notably pnpm. - The new strategy is to point to `node_modules/.bin/biome`` path, + The new strategy is to point to `node_modules/.bin/biome` path, which is consistent for all package managers. ## 1.1.2 (2023-09-07) diff --git a/website/src/content/docs/linter/rules/no-confusing-void-type.md b/website/src/content/docs/linter/rules/no-confusing-void-type.md index 720f7078905d..2a50db546217 100644 --- a/website/src/content/docs/linter/rules/no-confusing-void-type.md +++ b/website/src/content/docs/linter/rules/no-confusing-void-type.md @@ -1,5 +1,5 @@ --- -title: noConfusingVoidType (since v1.2) +title: noConfusingVoidType (since v1.2.0) --- diff --git a/website/src/pages/schemas/1.2/schema.json.js b/website/src/pages/schemas/1.2.0/schema.json.js similarity index 100% rename from website/src/pages/schemas/1.2/schema.json.js rename to website/src/pages/schemas/1.2.0/schema.json.js