Skip to content

Commit

Permalink
release: v1.9.3 (#4140)
Browse files Browse the repository at this point in the history
Co-authored-by: Victorien Elvinger <[email protected]>
  • Loading branch information
ematipico and Conaclos authored Oct 1, 2024
1 parent f959987 commit 3d498ed
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 14 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ 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).

## Unreleased

### Analyzer
## v1.9.3 (2024-10-01)

### CLI

Expand Down Expand Up @@ -80,6 +78,10 @@ our [guidelines for writing a good changelog entry](https://github.com/biomejs/b

#### New features

- Add [noDescendingSpecificity](https://biomejs.dev/linter/rules/no-descending-specificity/). Contributed by @tunamaguro

- Add [noNestedTernary](https://biomejs.dev/linter/rules/no-nested-ternary/). Contributed by @kaykdm

- Add [noTemplateCurlyInString](https://biomejs.dev/linter/rules/no-template-curly-in-string/). Contributed by @fireairforce

- Add [noOctalEscape](https://biomejs.dev/linter/rules/no-octal-escape/). Contributed by @fireairforce
Expand Down
Empty file removed aria-data-1-3-draft.json
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ declare_lint_rule! {
/// ```
///
pub NoDescendingSpecificity {
version: "next",
version: "1.9.3",
name: "noDescendingSpecificity",
language: "css",
recommended: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ declare_lint_rule! {
/// ```
///
pub NoNestedTernary {
version: "next",
version: "1.9.3",
name: "noNestedTernary",
language: "js",
recommended: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ declare_lint_rule! {
/// ```
///
pub NoOctalEscape {
version: "next",
version: "1.9.3",
name: "noOctalEscape",
language: "js",
sources: &[RuleSource::Eslint("no-octal-escape")],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ declare_lint_rule! {
/// ```
///
pub NoTemplateCurlyInString {
version: "next",
version: "1.9.3",
name: "noTemplateCurlyInString",
language: "js",
sources: &[RuleSource::Eslint("no-template-curly-in-string")],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ declare_lint_rule! {
/// ```
///
pub UseExplicitFunctionReturnType {
version: "next",
version: "1.9.3",
name: "useExplicitFunctionReturnType",
language: "ts",
recommended: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/@biomejs/biome/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biomejs/biome",
"version": "1.9.2",
"version": "1.9.3",
"bin": {
"biome": "bin/biome"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/@biomejs/js-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@biomejs/js-api",
"version": "0.6.2",
"version": "0.7.0",
"description": "JavaScript APIs for the Biome package",
"scripts": {
"tsc": "tsc --noEmit",
Expand Down
9 changes: 5 additions & 4 deletions packages/@biomejs/wasm-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "@biomejs/biome_wasm",
"name": "@biomejs/wasm-nodejs",
"collaborators": [
"Biome Developers and Contributors"
],
"description": "WebAssembly bindings to the Biome workspace API",
"version": "1.7.3",
"version": "1.8.3",
"license": "MIT OR Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/biomejs/biome"
"url": "git+https://github.com/biomejs/biome.git",
"directory": "packages/@biomejs/biome/wasm-nodejs"
},
"files": [
"biome_wasm_bg.wasm",
Expand All @@ -24,4 +25,4 @@
"formatter",
"wasm"
]
}
}

0 comments on commit 3d498ed

Please sign in to comment.