From 8f5be07ed60cf4228dc94709fa0ae3f62096b704 Mon Sep 17 00:00:00 2001 From: oxc-bot Date: Sun, 19 Jan 2025 09:44:29 +0800 Subject: [PATCH] release(crates): v0.47.1 (#8593) ## [0.47.1] - 2025-01-19 ### Features - ee8ee55 napi/parser: Add `.hasChanged()` to `MagicString` (#8586) (Boshen) - 1bef911 napi/parser: Add source map API (#8584) (Boshen) ### Bug Fixes - 7b219a9 minifier: Fix dce shadowed undefined (#8582) (Boshen) - 7421a52 transformer/typescript: Correctly resolve references to non-constant enum members (#8543) (branchseer) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com> --- Cargo.lock | 46 ++++++++++----------- Cargo.toml | 46 ++++++++++----------- crates/oxc/Cargo.toml | 2 +- crates/oxc_allocator/Cargo.toml | 2 +- crates/oxc_ast/Cargo.toml | 2 +- crates/oxc_ast_macros/Cargo.toml | 2 +- crates/oxc_cfg/Cargo.toml | 2 +- crates/oxc_codegen/Cargo.toml | 2 +- crates/oxc_data_structures/Cargo.toml | 2 +- crates/oxc_diagnostics/Cargo.toml | 2 +- crates/oxc_ecmascript/CHANGELOG.md | 6 +++ crates/oxc_ecmascript/Cargo.toml | 2 +- crates/oxc_estree/Cargo.toml | 2 +- crates/oxc_isolated_declarations/Cargo.toml | 2 +- crates/oxc_mangler/Cargo.toml | 2 +- crates/oxc_minifier/CHANGELOG.md | 6 +++ crates/oxc_minifier/Cargo.toml | 2 +- crates/oxc_napi/Cargo.toml | 2 +- crates/oxc_parser/Cargo.toml | 2 +- crates/oxc_regular_expression/Cargo.toml | 2 +- crates/oxc_semantic/Cargo.toml | 2 +- crates/oxc_span/Cargo.toml | 2 +- crates/oxc_syntax/Cargo.toml | 2 +- crates/oxc_transformer/CHANGELOG.md | 6 +++ crates/oxc_transformer/Cargo.toml | 2 +- crates/oxc_traverse/Cargo.toml | 2 +- napi/parser/CHANGELOG.md | 7 ++++ napi/parser/Cargo.toml | 2 +- napi/transform/Cargo.toml | 2 +- npm/oxc-minify/package.json | 2 +- npm/oxc-parser/package.json | 2 +- npm/oxc-transform/package.json | 2 +- npm/oxc-types/package.json | 2 +- wasm/parser/package.json | 2 +- 34 files changed, 99 insertions(+), 74 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b051a9f44..0a01588cd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1477,7 +1477,7 @@ checksum = "fb37767f6569cd834a413442455e0f066d0d522de8630436e2a1761d9726ba56" [[package]] name = "oxc" -version = "0.47.0" +version = "0.47.1" dependencies = [ "oxc_allocator", "oxc_ast", @@ -1539,7 +1539,7 @@ dependencies = [ [[package]] name = "oxc_allocator" -version = "0.47.0" +version = "0.47.1" dependencies = [ "allocator-api2", "bumpalo", @@ -1552,7 +1552,7 @@ dependencies = [ [[package]] name = "oxc_ast" -version = "0.47.0" +version = "0.47.1" dependencies = [ "bitflags 2.7.0", "cow-utils", @@ -1570,7 +1570,7 @@ dependencies = [ [[package]] name = "oxc_ast_macros" -version = "0.47.0" +version = "0.47.1" dependencies = [ "proc-macro2", "quote", @@ -1620,7 +1620,7 @@ dependencies = [ [[package]] name = "oxc_cfg" -version = "0.47.0" +version = "0.47.1" dependencies = [ "bitflags 2.7.0", "itertools", @@ -1633,7 +1633,7 @@ dependencies = [ [[package]] name = "oxc_codegen" -version = "0.47.0" +version = "0.47.1" dependencies = [ "assert-unchecked", "base64", @@ -1695,7 +1695,7 @@ dependencies = [ [[package]] name = "oxc_data_structures" -version = "0.47.0" +version = "0.47.1" dependencies = [ "assert-unchecked", "ropey", @@ -1703,14 +1703,14 @@ dependencies = [ [[package]] name = "oxc_diagnostics" -version = "0.47.0" +version = "0.47.1" dependencies = [ "oxc-miette", ] [[package]] name = "oxc_ecmascript" -version = "0.47.0" +version = "0.47.1" dependencies = [ "num-bigint", "num-traits", @@ -1721,7 +1721,7 @@ dependencies = [ [[package]] name = "oxc_estree" -version = "0.47.0" +version = "0.47.1" dependencies = [ "serde", ] @@ -1738,7 +1738,7 @@ dependencies = [ [[package]] name = "oxc_isolated_declarations" -version = "0.47.0" +version = "0.47.1" dependencies = [ "bitflags 2.7.0", "insta", @@ -1838,7 +1838,7 @@ dependencies = [ [[package]] name = "oxc_mangler" -version = "0.47.0" +version = "0.47.1" dependencies = [ "itertools", "oxc_allocator", @@ -1851,7 +1851,7 @@ dependencies = [ [[package]] name = "oxc_minifier" -version = "0.47.0" +version = "0.47.1" dependencies = [ "cow-utils", "insta", @@ -1906,7 +1906,7 @@ dependencies = [ [[package]] name = "oxc_napi" -version = "0.47.0" +version = "0.47.1" dependencies = [ "napi", "napi-derive", @@ -1915,7 +1915,7 @@ dependencies = [ [[package]] name = "oxc_parser" -version = "0.47.0" +version = "0.47.1" dependencies = [ "assert-unchecked", "bitflags 2.7.0", @@ -1938,7 +1938,7 @@ dependencies = [ [[package]] name = "oxc_parser_napi" -version = "0.47.0" +version = "0.47.1" dependencies = [ "napi", "napi-build", @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "oxc_regular_expression" -version = "0.47.0" +version = "0.47.1" dependencies = [ "oxc_allocator", "oxc_ast_macros", @@ -2032,7 +2032,7 @@ dependencies = [ [[package]] name = "oxc_semantic" -version = "0.47.0" +version = "0.47.1" dependencies = [ "assert-unchecked", "insta", @@ -2072,7 +2072,7 @@ dependencies = [ [[package]] name = "oxc_span" -version = "0.47.0" +version = "0.47.1" dependencies = [ "compact_str", "oxc-miette", @@ -2085,7 +2085,7 @@ dependencies = [ [[package]] name = "oxc_syntax" -version = "0.47.0" +version = "0.47.1" dependencies = [ "assert-unchecked", "bitflags 2.7.0", @@ -2144,7 +2144,7 @@ dependencies = [ [[package]] name = "oxc_transform_napi" -version = "0.47.0" +version = "0.47.1" dependencies = [ "napi", "napi-build", @@ -2157,7 +2157,7 @@ dependencies = [ [[package]] name = "oxc_transformer" -version = "0.47.0" +version = "0.47.1" dependencies = [ "base64", "compact_str", @@ -2190,7 +2190,7 @@ dependencies = [ [[package]] name = "oxc_traverse" -version = "0.47.0" +version = "0.47.1" dependencies = [ "compact_str", "itoa", diff --git a/Cargo.toml b/Cargo.toml index 8c1152de4..3aa17b914 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,29 +79,29 @@ doc_lazy_continuation = "allow" # FIXME [workspace.dependencies] # publish = true -oxc = { version = "0.47.0", path = "crates/oxc" } -oxc_allocator = { version = "0.47.0", path = "crates/oxc_allocator" } -oxc_ast = { version = "0.47.0", path = "crates/oxc_ast" } -oxc_ast_macros = { version = "0.47.0", path = "crates/oxc_ast_macros" } -oxc_cfg = { version = "0.47.0", path = "crates/oxc_cfg" } -oxc_codegen = { version = "0.47.0", path = "crates/oxc_codegen" } -oxc_data_structures = { version = "0.47.0", path = "crates/oxc_data_structures" } -oxc_diagnostics = { version = "0.47.0", path = "crates/oxc_diagnostics" } -oxc_ecmascript = { version = "0.47.0", path = "crates/oxc_ecmascript" } -oxc_estree = { version = "0.47.0", path = "crates/oxc_estree" } -oxc_isolated_declarations = { version = "0.47.0", path = "crates/oxc_isolated_declarations" } -oxc_mangler = { version = "0.47.0", path = "crates/oxc_mangler" } -oxc_minifier = { version = "0.47.0", path = "crates/oxc_minifier" } -oxc_napi = { version = "0.47.0", path = "crates/oxc_napi" } -oxc_parser = { version = "0.47.0", path = "crates/oxc_parser" } -oxc_parser_napi = { version = "0.47.0", path = "napi/parser" } -oxc_regular_expression = { version = "0.47.0", path = "crates/oxc_regular_expression" } -oxc_semantic = { version = "0.47.0", path = "crates/oxc_semantic" } -oxc_span = { version = "0.47.0", path = "crates/oxc_span" } -oxc_syntax = { version = "0.47.0", path = "crates/oxc_syntax" } -oxc_transform_napi = { version = "0.47.0", path = "napi/transform" } -oxc_transformer = { version = "0.47.0", path = "crates/oxc_transformer" } -oxc_traverse = { version = "0.47.0", path = "crates/oxc_traverse" } +oxc = { version = "0.47.1", path = "crates/oxc" } +oxc_allocator = { version = "0.47.1", path = "crates/oxc_allocator" } +oxc_ast = { version = "0.47.1", path = "crates/oxc_ast" } +oxc_ast_macros = { version = "0.47.1", path = "crates/oxc_ast_macros" } +oxc_cfg = { version = "0.47.1", path = "crates/oxc_cfg" } +oxc_codegen = { version = "0.47.1", path = "crates/oxc_codegen" } +oxc_data_structures = { version = "0.47.1", path = "crates/oxc_data_structures" } +oxc_diagnostics = { version = "0.47.1", path = "crates/oxc_diagnostics" } +oxc_ecmascript = { version = "0.47.1", path = "crates/oxc_ecmascript" } +oxc_estree = { version = "0.47.1", path = "crates/oxc_estree" } +oxc_isolated_declarations = { version = "0.47.1", path = "crates/oxc_isolated_declarations" } +oxc_mangler = { version = "0.47.1", path = "crates/oxc_mangler" } +oxc_minifier = { version = "0.47.1", path = "crates/oxc_minifier" } +oxc_napi = { version = "0.47.1", path = "crates/oxc_napi" } +oxc_parser = { version = "0.47.1", path = "crates/oxc_parser" } +oxc_parser_napi = { version = "0.47.1", path = "napi/parser" } +oxc_regular_expression = { version = "0.47.1", path = "crates/oxc_regular_expression" } +oxc_semantic = { version = "0.47.1", path = "crates/oxc_semantic" } +oxc_span = { version = "0.47.1", path = "crates/oxc_span" } +oxc_syntax = { version = "0.47.1", path = "crates/oxc_syntax" } +oxc_transform_napi = { version = "0.47.1", path = "napi/transform" } +oxc_transformer = { version = "0.47.1", path = "crates/oxc_transformer" } +oxc_traverse = { version = "0.47.1", path = "crates/oxc_traverse" } # publish = false oxc_linter = { path = "crates/oxc_linter" } diff --git a/crates/oxc/Cargo.toml b/crates/oxc/Cargo.toml index 3ae13607c..4437b9e43 100644 --- a/crates/oxc/Cargo.toml +++ b/crates/oxc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_allocator/Cargo.toml b/crates/oxc_allocator/Cargo.toml index cc746110e..218ca60dc 100644 --- a/crates/oxc_allocator/Cargo.toml +++ b/crates/oxc_allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_allocator" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_ast/Cargo.toml b/crates/oxc_ast/Cargo.toml index 126d7359d..c235d519a 100644 --- a/crates/oxc_ast/Cargo.toml +++ b/crates/oxc_ast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_ast" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_ast_macros/Cargo.toml b/crates/oxc_ast_macros/Cargo.toml index 1b3c44ddf..ceca16fce 100644 --- a/crates/oxc_ast_macros/Cargo.toml +++ b/crates/oxc_ast_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_ast_macros" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_cfg/Cargo.toml b/crates/oxc_cfg/Cargo.toml index a20fc335e..812ca90c0 100644 --- a/crates/oxc_cfg/Cargo.toml +++ b/crates/oxc_cfg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_cfg" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_codegen/Cargo.toml b/crates/oxc_codegen/Cargo.toml index 0c1e13266..3e32fe809 100644 --- a/crates/oxc_codegen/Cargo.toml +++ b/crates/oxc_codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_codegen" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_data_structures/Cargo.toml b/crates/oxc_data_structures/Cargo.toml index adc286ea3..a5a60aa38 100644 --- a/crates/oxc_data_structures/Cargo.toml +++ b/crates/oxc_data_structures/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_data_structures" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_diagnostics/Cargo.toml b/crates/oxc_diagnostics/Cargo.toml index 837e66469..c4313f060 100644 --- a/crates/oxc_diagnostics/Cargo.toml +++ b/crates/oxc_diagnostics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_diagnostics" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_ecmascript/CHANGELOG.md b/crates/oxc_ecmascript/CHANGELOG.md index e3c880a37..95eae86e6 100644 --- a/crates/oxc_ecmascript/CHANGELOG.md +++ b/crates/oxc_ecmascript/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.47.1] - 2025-01-19 + +### Bug Fixes + +- 7b219a9 minifier: Fix dce shadowed undefined (#8582) (Boshen) + ## [0.47.0] - 2025-01-18 ### Features diff --git a/crates/oxc_ecmascript/Cargo.toml b/crates/oxc_ecmascript/Cargo.toml index e05f967cc..eb3d81d91 100644 --- a/crates/oxc_ecmascript/Cargo.toml +++ b/crates/oxc_ecmascript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_ecmascript" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_estree/Cargo.toml b/crates/oxc_estree/Cargo.toml index 73d311997..51df139ed 100644 --- a/crates/oxc_estree/Cargo.toml +++ b/crates/oxc_estree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_estree" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_isolated_declarations/Cargo.toml b/crates/oxc_isolated_declarations/Cargo.toml index 5ed99a149..13e929e7f 100644 --- a/crates/oxc_isolated_declarations/Cargo.toml +++ b/crates/oxc_isolated_declarations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_isolated_declarations" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_mangler/Cargo.toml b/crates/oxc_mangler/Cargo.toml index 501e60cda..5ad09399c 100644 --- a/crates/oxc_mangler/Cargo.toml +++ b/crates/oxc_mangler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_mangler" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_minifier/CHANGELOG.md b/crates/oxc_minifier/CHANGELOG.md index faf20a227..54e0a1c51 100644 --- a/crates/oxc_minifier/CHANGELOG.md +++ b/crates/oxc_minifier/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.47.1] - 2025-01-19 + +### Bug Fixes + +- 7b219a9 minifier: Fix dce shadowed undefined (#8582) (Boshen) + ## [0.47.0] - 2025-01-18 ### Features diff --git a/crates/oxc_minifier/Cargo.toml b/crates/oxc_minifier/Cargo.toml index 076becef2..5212e6e03 100644 --- a/crates/oxc_minifier/Cargo.toml +++ b/crates/oxc_minifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_minifier" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_napi/Cargo.toml b/crates/oxc_napi/Cargo.toml index 298c3d5e0..53c85af6f 100644 --- a/crates/oxc_napi/Cargo.toml +++ b/crates/oxc_napi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_napi" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_parser/Cargo.toml b/crates/oxc_parser/Cargo.toml index b3144a9a1..9997be161 100644 --- a/crates/oxc_parser/Cargo.toml +++ b/crates/oxc_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_parser" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_regular_expression/Cargo.toml b/crates/oxc_regular_expression/Cargo.toml index 7cc11d370..1ca1fc960 100644 --- a/crates/oxc_regular_expression/Cargo.toml +++ b/crates/oxc_regular_expression/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_regular_expression" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_semantic/Cargo.toml b/crates/oxc_semantic/Cargo.toml index cfb2adfd6..5e8efdace 100644 --- a/crates/oxc_semantic/Cargo.toml +++ b/crates/oxc_semantic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_semantic" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_span/Cargo.toml b/crates/oxc_span/Cargo.toml index c8eccf537..e6b6d4a2f 100644 --- a/crates/oxc_span/Cargo.toml +++ b/crates/oxc_span/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_span" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_syntax/Cargo.toml b/crates/oxc_syntax/Cargo.toml index 84813fb77..5f2039ff0 100644 --- a/crates/oxc_syntax/Cargo.toml +++ b/crates/oxc_syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_syntax" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_transformer/CHANGELOG.md b/crates/oxc_transformer/CHANGELOG.md index 29e5fb451..39cf96423 100644 --- a/crates/oxc_transformer/CHANGELOG.md +++ b/crates/oxc_transformer/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.47.1] - 2025-01-19 + +### Bug Fixes + +- 7421a52 transformer/typescript: Correctly resolve references to non-constant enum members (#8543) (branchseer) + ## [0.47.0] - 2025-01-18 - fae4cd2 allocator: [**BREAKING**] Remove `Vec::into_string` (#8571) (overlookmotel) diff --git a/crates/oxc_transformer/Cargo.toml b/crates/oxc_transformer/Cargo.toml index b877508b2..4ceeb0ff3 100644 --- a/crates/oxc_transformer/Cargo.toml +++ b/crates/oxc_transformer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_transformer" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_traverse/Cargo.toml b/crates/oxc_traverse/Cargo.toml index 8506e1a10..528d4d5cb 100644 --- a/crates/oxc_traverse/Cargo.toml +++ b/crates/oxc_traverse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_traverse" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/napi/parser/CHANGELOG.md b/napi/parser/CHANGELOG.md index 0cacade99..4c774b8b8 100644 --- a/napi/parser/CHANGELOG.md +++ b/napi/parser/CHANGELOG.md @@ -4,6 +4,13 @@ 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.47.1] - 2025-01-19 + +### Features + +- ee8ee55 napi/parser: Add `.hasChanged()` to `MagicString` (#8586) (Boshen) +- 1bef911 napi/parser: Add source map API (#8584) (Boshen) + ## [0.47.0] - 2025-01-18 ### Features diff --git a/napi/parser/Cargo.toml b/napi/parser/Cargo.toml index bc3d0c4d4..13c025d79 100644 --- a/napi/parser/Cargo.toml +++ b/napi/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_parser_napi" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/napi/transform/Cargo.toml b/napi/transform/Cargo.toml index e6e28efea..85060b797 100644 --- a/napi/transform/Cargo.toml +++ b/napi/transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_transform_napi" -version = "0.47.0" +version = "0.47.1" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/npm/oxc-minify/package.json b/npm/oxc-minify/package.json index 8dd884893..d8f6116de 100644 --- a/npm/oxc-minify/package.json +++ b/npm/oxc-minify/package.json @@ -1,6 +1,6 @@ { "name": "oxc-minify", - "version": "0.47.0", + "version": "0.47.1", "description": "Oxc minify Node API", "keywords": [ "minify" diff --git a/npm/oxc-parser/package.json b/npm/oxc-parser/package.json index 58d24c6ee..f0d1c40f5 100644 --- a/npm/oxc-parser/package.json +++ b/npm/oxc-parser/package.json @@ -1,6 +1,6 @@ { "name": "oxc-parser", - "version": "0.47.0", + "version": "0.47.1", "description": "Oxc Parser Node API", "keywords": [ "Parser" diff --git a/npm/oxc-transform/package.json b/npm/oxc-transform/package.json index 7b6501ce8..54c91924b 100644 --- a/npm/oxc-transform/package.json +++ b/npm/oxc-transform/package.json @@ -1,6 +1,6 @@ { "name": "oxc-transform", - "version": "0.47.0", + "version": "0.47.1", "description": "Oxc transform Node API", "keywords": [ "transform" diff --git a/npm/oxc-types/package.json b/npm/oxc-types/package.json index 2e27af168..eae6ab57f 100644 --- a/npm/oxc-types/package.json +++ b/npm/oxc-types/package.json @@ -1,6 +1,6 @@ { "name": "@oxc-project/types", - "version": "0.47.0", + "version": "0.47.1", "description": "Types for Oxc AST nodes", "keywords": [ "AST", diff --git a/wasm/parser/package.json b/wasm/parser/package.json index 4e78d57bc..2c8bd1987 100644 --- a/wasm/parser/package.json +++ b/wasm/parser/package.json @@ -1,6 +1,6 @@ { "name": "@oxc-parser/wasm", - "version": "0.47.0", + "version": "0.47.1", "description": "Wasm target for the oxc parser.", "keywords": [ "JavaScript",