diff --git a/Cargo.lock b/Cargo.lock index 26e6ecc3e97b2..0a62901afb47d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1631,7 +1631,7 @@ dependencies = [ [[package]] name = "oxc_linter" -version = "0.9.4" +version = "0.9.5" dependencies = [ "bitflags 2.6.0", "convert_case", @@ -2023,7 +2023,7 @@ dependencies = [ [[package]] name = "oxlint" -version = "0.9.4" +version = "0.9.5" dependencies = [ "bpaf", "glob", diff --git a/apps/oxlint/Cargo.toml b/apps/oxlint/Cargo.toml index 82da9c082330a..85b90e2acd216 100644 --- a/apps/oxlint/Cargo.toml +++ b/apps/oxlint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxlint" -version = "0.9.4" +version = "0.9.5" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_linter/CHANGELOG.md b/crates/oxc_linter/CHANGELOG.md index 0dff926573063..8437eb48e0fb9 100644 --- a/crates/oxc_linter/CHANGELOG.md +++ b/crates/oxc_linter/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0. +## [0.9.5] - 2024-09-12 + +### Features + +- 4b04f65 linter: Implement `no-plusplus` rule (#5570) (Cam McHenry) + ## [0.9.4] - 2024-09-12 - 1fa3e56 semantic: [**BREAKING**] Rename `SymbolTable::iter` to `symbol_ids` (#5621) (overlookmotel) diff --git a/crates/oxc_linter/Cargo.toml b/crates/oxc_linter/Cargo.toml index 61fbe0ab32311..06d8c4af99e7d 100644 --- a/crates/oxc_linter/Cargo.toml +++ b/crates/oxc_linter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_linter" -version = "0.9.4" +version = "0.9.5" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 0392afbe4b566..79e098fa6d2de 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -3,7 +3,7 @@ "description": "oxc vscode extension", "packageManager": "pnpm@9.10.0", "license": "MIT", - "version": "0.9.4", + "version": "0.9.5", "icon": "icon.png", "publisher": "oxc", "displayName": "Oxc", diff --git a/npm/oxlint/package.json b/npm/oxlint/package.json index 1c9788b3b877f..5e95a37259d99 100644 --- a/npm/oxlint/package.json +++ b/npm/oxlint/package.json @@ -1,6 +1,6 @@ { "name": "oxlint", - "version": "0.9.4", + "version": "0.9.5", "description": "Linter for the JavaScript Oxidation Compiler", "keywords": [], "author": "Boshen and oxc contributors", diff --git a/npm/oxlint/scripts/generate-packages.mjs b/npm/oxlint/scripts/generate-packages.mjs index 4b1f9406ed980..7768b560ff458 100644 --- a/npm/oxlint/scripts/generate-packages.mjs +++ b/npm/oxlint/scripts/generate-packages.mjs @@ -52,10 +52,10 @@ function generateNativePackage(target) { ...libc, publishConfig: { executableFiles: [ - "oxlint", - "oxc_language_server" - ] - } + 'oxlint', + 'oxc_language_server', + ], + }, }; const manifestPath = resolve(packageRoot, 'package.json');