diff --git a/Cargo.lock b/Cargo.lock index bd69ff79c..70b1f8983 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1398,7 +1398,7 @@ checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f" [[package]] name = "oxc" -version = "0.30.3" +version = "0.30.4" dependencies = [ "oxc_allocator", "oxc_ast", @@ -1437,7 +1437,7 @@ dependencies = [ [[package]] name = "oxc_allocator" -version = "0.30.3" +version = "0.30.4" dependencies = [ "allocator-api2", "bumpalo", @@ -1447,7 +1447,7 @@ dependencies = [ [[package]] name = "oxc_ast" -version = "0.30.3" +version = "0.30.4" dependencies = [ "bitflags 2.6.0", "num-bigint", @@ -1464,7 +1464,7 @@ dependencies = [ [[package]] name = "oxc_ast_macros" -version = "0.30.3" +version = "0.30.4" dependencies = [ "proc-macro2", "quote", @@ -1512,7 +1512,7 @@ dependencies = [ [[package]] name = "oxc_cfg" -version = "0.30.3" +version = "0.30.4" dependencies = [ "bitflags 2.6.0", "itertools", @@ -1523,7 +1523,7 @@ dependencies = [ [[package]] name = "oxc_codegen" -version = "0.30.3" +version = "0.30.4" dependencies = [ "base64", "bitflags 2.6.0", @@ -1571,7 +1571,7 @@ dependencies = [ [[package]] name = "oxc_diagnostics" -version = "0.30.3" +version = "0.30.4" dependencies = [ "miette", "owo-colors", @@ -1582,7 +1582,7 @@ dependencies = [ [[package]] name = "oxc_index" -version = "0.30.3" +version = "0.30.4" dependencies = [ "rayon", "serde", @@ -1590,7 +1590,7 @@ dependencies = [ [[package]] name = "oxc_isolated_declarations" -version = "0.30.3" +version = "0.30.4" dependencies = [ "bitflags 2.6.0", "insta", @@ -1685,7 +1685,7 @@ dependencies = [ [[package]] name = "oxc_mangler" -version = "0.30.3" +version = "0.30.4" dependencies = [ "itertools", "oxc_ast", @@ -1696,7 +1696,7 @@ dependencies = [ [[package]] name = "oxc_minifier" -version = "0.30.3" +version = "0.30.4" dependencies = [ "cow-utils", "insta", @@ -1746,7 +1746,7 @@ dependencies = [ [[package]] name = "oxc_module_lexer" -version = "0.30.3" +version = "0.30.4" dependencies = [ "oxc_allocator", "oxc_ast", @@ -1756,7 +1756,7 @@ dependencies = [ [[package]] name = "oxc_parser" -version = "0.30.3" +version = "0.30.4" dependencies = [ "assert-unchecked", "bitflags 2.6.0", @@ -1835,7 +1835,7 @@ dependencies = [ [[package]] name = "oxc_regular_expression" -version = "0.30.3" +version = "0.30.4" dependencies = [ "oxc_allocator", "oxc_ast_macros", @@ -1869,7 +1869,7 @@ dependencies = [ [[package]] name = "oxc_semantic" -version = "0.30.3" +version = "0.30.4" dependencies = [ "assert-unchecked", "indexmap", @@ -1893,7 +1893,7 @@ dependencies = [ [[package]] name = "oxc_sourcemap" -version = "0.30.3" +version = "0.30.4" dependencies = [ "base64-simd", "cfg-if", @@ -1906,7 +1906,7 @@ dependencies = [ [[package]] name = "oxc_span" -version = "0.30.3" +version = "0.30.4" dependencies = [ "compact_str", "miette", @@ -1920,7 +1920,7 @@ dependencies = [ [[package]] name = "oxc_syntax" -version = "0.30.3" +version = "0.30.4" dependencies = [ "assert-unchecked", "bitflags 2.6.0", @@ -1964,7 +1964,7 @@ dependencies = [ [[package]] name = "oxc_transform_napi" -version = "0.30.3" +version = "0.30.4" dependencies = [ "napi", "napi-build", @@ -1983,7 +1983,7 @@ dependencies = [ [[package]] name = "oxc_transformer" -version = "0.30.3" +version = "0.30.4" dependencies = [ "assert-unchecked", "base64", @@ -2010,7 +2010,7 @@ dependencies = [ [[package]] name = "oxc_traverse" -version = "0.30.3" +version = "0.30.4" dependencies = [ "compact_str", "itoa", diff --git a/Cargo.toml b/Cargo.toml index 4bf32cb51..5ea063f37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,27 +76,27 @@ doc_lazy_continuation = "allow" # FIXME [workspace.dependencies] # publish = true -oxc = { version = "0.30.3", path = "crates/oxc" } -oxc_allocator = { version = "0.30.3", path = "crates/oxc_allocator" } -oxc_ast = { version = "0.30.3", path = "crates/oxc_ast" } -oxc_ast_macros = { version = "0.30.3", path = "crates/oxc_ast_macros" } -oxc_cfg = { version = "0.30.3", path = "crates/oxc_cfg" } -oxc_codegen = { version = "0.30.3", path = "crates/oxc_codegen" } -oxc_diagnostics = { version = "0.30.3", path = "crates/oxc_diagnostics" } -oxc_index = { version = "0.30.3", path = "crates/oxc_index" } -oxc_isolated_declarations = { version = "0.30.3", path = "crates/oxc_isolated_declarations" } -oxc_mangler = { version = "0.30.3", path = "crates/oxc_mangler" } -oxc_minifier = { version = "0.30.3", path = "crates/oxc_minifier" } -oxc_module_lexer = { version = "0.30.3", path = "crates/oxc_module_lexer" } -oxc_parser = { version = "0.30.3", path = "crates/oxc_parser" } -oxc_regular_expression = { version = "0.30.3", path = "crates/oxc_regular_expression" } -oxc_semantic = { version = "0.30.3", path = "crates/oxc_semantic" } -oxc_sourcemap = { version = "0.30.3", path = "crates/oxc_sourcemap" } -oxc_span = { version = "0.30.3", path = "crates/oxc_span" } -oxc_syntax = { version = "0.30.3", path = "crates/oxc_syntax" } -oxc_transform_napi = { version = "0.30.3", path = "napi/transform" } -oxc_transformer = { version = "0.30.3", path = "crates/oxc_transformer" } -oxc_traverse = { version = "0.30.3", path = "crates/oxc_traverse" } +oxc = { version = "0.30.4", path = "crates/oxc" } +oxc_allocator = { version = "0.30.4", path = "crates/oxc_allocator" } +oxc_ast = { version = "0.30.4", path = "crates/oxc_ast" } +oxc_ast_macros = { version = "0.30.4", path = "crates/oxc_ast_macros" } +oxc_cfg = { version = "0.30.4", path = "crates/oxc_cfg" } +oxc_codegen = { version = "0.30.4", path = "crates/oxc_codegen" } +oxc_diagnostics = { version = "0.30.4", path = "crates/oxc_diagnostics" } +oxc_index = { version = "0.30.4", path = "crates/oxc_index" } +oxc_isolated_declarations = { version = "0.30.4", path = "crates/oxc_isolated_declarations" } +oxc_mangler = { version = "0.30.4", path = "crates/oxc_mangler" } +oxc_minifier = { version = "0.30.4", path = "crates/oxc_minifier" } +oxc_module_lexer = { version = "0.30.4", path = "crates/oxc_module_lexer" } +oxc_parser = { version = "0.30.4", path = "crates/oxc_parser" } +oxc_regular_expression = { version = "0.30.4", path = "crates/oxc_regular_expression" } +oxc_semantic = { version = "0.30.4", path = "crates/oxc_semantic" } +oxc_sourcemap = { version = "0.30.4", path = "crates/oxc_sourcemap" } +oxc_span = { version = "0.30.4", path = "crates/oxc_span" } +oxc_syntax = { version = "0.30.4", path = "crates/oxc_syntax" } +oxc_transform_napi = { version = "0.30.4", path = "napi/transform" } +oxc_transformer = { version = "0.30.4", path = "crates/oxc_transformer" } +oxc_traverse = { version = "0.30.4", 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 3bae90e07..fba375dfc 100644 --- a/crates/oxc/Cargo.toml +++ b/crates/oxc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_allocator/Cargo.toml b/crates/oxc_allocator/Cargo.toml index 2be8cb78b..27891cfb9 100644 --- a/crates/oxc_allocator/Cargo.toml +++ b/crates/oxc_allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_allocator" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_ast/Cargo.toml b/crates/oxc_ast/Cargo.toml index 021d21e30..db3d95123 100644 --- a/crates/oxc_ast/Cargo.toml +++ b/crates/oxc_ast/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_ast" -version = "0.30.3" +version = "0.30.4" 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 ee0f1e5ee..390e38824 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.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_cfg/Cargo.toml b/crates/oxc_cfg/Cargo.toml index d24632bac..7d1fe77ac 100644 --- a/crates/oxc_cfg/Cargo.toml +++ b/crates/oxc_cfg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_cfg" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_codegen/CHANGELOG.md b/crates/oxc_codegen/CHANGELOG.md index c0a9731ea..fc216cfb9 100644 --- a/crates/oxc_codegen/CHANGELOG.md +++ b/crates/oxc_codegen/CHANGELOG.md @@ -4,6 +4,16 @@ 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.30.4] - 2024-09-28 + +### Bug Fixes + +- 8582ae3 codegen: Missing parentheses if there is a pure comment before a NewExpression as a ComputedMemberExpression's callee (#6105) (Dunqing) + +### Performance + +- 05852a0 codegen: Do not check whether there are annotation comments or not if we don't preserve annotation comments (#6107) (Dunqing) + ## [0.30.2] - 2024-09-27 ### Features diff --git a/crates/oxc_codegen/Cargo.toml b/crates/oxc_codegen/Cargo.toml index 9c4cdd280..7041ee4b4 100644 --- a/crates/oxc_codegen/Cargo.toml +++ b/crates/oxc_codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_codegen" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_diagnostics/Cargo.toml b/crates/oxc_diagnostics/Cargo.toml index c5e09e4db..5cdb40715 100644 --- a/crates/oxc_diagnostics/Cargo.toml +++ b/crates/oxc_diagnostics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_diagnostics" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_index/Cargo.toml b/crates/oxc_index/Cargo.toml index 1edde88a7..692269e9a 100644 --- a/crates/oxc_index/Cargo.toml +++ b/crates/oxc_index/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_index" -version = "0.30.3" +version = "0.30.4" 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 a2e61affb..75f357872 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.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_mangler/Cargo.toml b/crates/oxc_mangler/Cargo.toml index abfa97767..89cfd8449 100644 --- a/crates/oxc_mangler/Cargo.toml +++ b/crates/oxc_mangler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_mangler" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_minifier/Cargo.toml b/crates/oxc_minifier/Cargo.toml index fbcc0217f..7b3887b1b 100644 --- a/crates/oxc_minifier/Cargo.toml +++ b/crates/oxc_minifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_minifier" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_module_lexer/Cargo.toml b/crates/oxc_module_lexer/Cargo.toml index 5e47e9c7f..8d44334be 100644 --- a/crates/oxc_module_lexer/Cargo.toml +++ b/crates/oxc_module_lexer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_module_lexer" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_parser/CHANGELOG.md b/crates/oxc_parser/CHANGELOG.md index f3e59da24..6019d8a7d 100644 --- a/crates/oxc_parser/CHANGELOG.md +++ b/crates/oxc_parser/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.30.4] - 2024-09-28 + +### Bug Fixes + +- fd6798f parser: Remove unintended `pub Kind` (#6109) (Boshen) + ## [0.30.2] - 2024-09-27 ### Bug Fixes diff --git a/crates/oxc_parser/Cargo.toml b/crates/oxc_parser/Cargo.toml index 7a3a2fe2a..f12bd67bf 100644 --- a/crates/oxc_parser/Cargo.toml +++ b/crates/oxc_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_parser" -version = "0.30.3" +version = "0.30.4" 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 3b63d408d..772454f1b 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.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_semantic/CHANGELOG.md b/crates/oxc_semantic/CHANGELOG.md index 3a11ea870..2134ab9fb 100644 --- a/crates/oxc_semantic/CHANGELOG.md +++ b/crates/oxc_semantic/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.30.4] - 2024-09-28 + +### Refactor + +- 2090fce semantic: Fix lint warning in nightly (#6110) (overlookmotel) + ## [0.30.3] - 2024-09-27 ### Bug Fixes diff --git a/crates/oxc_semantic/Cargo.toml b/crates/oxc_semantic/Cargo.toml index 5fdde4c36..5d4c53237 100644 --- a/crates/oxc_semantic/Cargo.toml +++ b/crates/oxc_semantic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_semantic" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_sourcemap/CHANGELOG.md b/crates/oxc_sourcemap/CHANGELOG.md index 340638bb9..a0c4e7d13 100644 --- a/crates/oxc_sourcemap/CHANGELOG.md +++ b/crates/oxc_sourcemap/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.30.4] - 2024-09-28 + +### Bug Fixes + +- 6f98aad sourcemap: Align sourcemap type with Rollup (#6133) (Boshen) + ## [0.29.0] - 2024-09-13 ### Performance diff --git a/crates/oxc_sourcemap/Cargo.toml b/crates/oxc_sourcemap/Cargo.toml index 55224282a..d28cdb1f6 100644 --- a/crates/oxc_sourcemap/Cargo.toml +++ b/crates/oxc_sourcemap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_sourcemap" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_span/CHANGELOG.md b/crates/oxc_span/CHANGELOG.md index f5cb63be1..003fb78f3 100644 --- a/crates/oxc_span/CHANGELOG.md +++ b/crates/oxc_span/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.30.4] - 2024-09-28 + +### Bug Fixes + +- fd6798f parser: Remove unintended `pub Kind` (#6109) (Boshen) + ## [0.30.0] - 2024-09-23 ### Features diff --git a/crates/oxc_span/Cargo.toml b/crates/oxc_span/Cargo.toml index 6f7c2730d..1d9a41b52 100644 --- a/crates/oxc_span/Cargo.toml +++ b/crates/oxc_span/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_span" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_syntax/Cargo.toml b/crates/oxc_syntax/Cargo.toml index 9803bc671..71b98e62c 100644 --- a/crates/oxc_syntax/Cargo.toml +++ b/crates/oxc_syntax/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_syntax" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_transformer/CHANGELOG.md b/crates/oxc_transformer/CHANGELOG.md index c78210ac2..d668a8e12 100644 --- a/crates/oxc_transformer/CHANGELOG.md +++ b/crates/oxc_transformer/CHANGELOG.md @@ -4,6 +4,23 @@ 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.30.4] - 2024-09-28 + +### Bug Fixes + +- 64d4756 transformer: Fix debug assertion in `Stack` (#6106) (overlookmotel) + +### Refactor + +- 7bc3988 transformer: Remove dead code (#6124) (overlookmotel) +- 07fe45b transformer: Exponentiation operator: convert to match (#6123) (overlookmotel) +- 4387845 transformer: Share `TypeScriptOptions` with ref not `Rc` (#6121) (overlookmotel) +- 09e41c2 transformer: Share `TransformCtx` with ref not `Rc` (#6118) (overlookmotel) +- 58fd6eb transformer: Pre-allocate more stack space (#6095) (overlookmotel) +- 9ac80bd transformer: Add wrapper around `NonNull` (#6115) (overlookmotel) +- c50500e transformer: Move common stack functionality into `StackCommon` trait (#6114) (overlookmotel) +- 9839059 transformer: Simplify `StackCapacity` trait (#6113) (overlookmotel) + ## [0.30.2] - 2024-09-27 ### Features diff --git a/crates/oxc_transformer/Cargo.toml b/crates/oxc_transformer/Cargo.toml index e4778caf9..14015879a 100644 --- a/crates/oxc_transformer/Cargo.toml +++ b/crates/oxc_transformer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_transformer" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/crates/oxc_traverse/Cargo.toml b/crates/oxc_traverse/Cargo.toml index 82b737602..454e13f75 100644 --- a/crates/oxc_traverse/Cargo.toml +++ b/crates/oxc_traverse/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_traverse" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/napi/transform/CHANGELOG.md b/napi/transform/CHANGELOG.md index c3bb337c3..7f5e0153d 100644 --- a/napi/transform/CHANGELOG.md +++ b/napi/transform/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.30.4] - 2024-09-28 + +### Bug Fixes + +- 6f98aad sourcemap: Align sourcemap type with Rollup (#6133) (Boshen) + ## [0.30.0] - 2024-09-23 ### Features diff --git a/napi/transform/Cargo.toml b/napi/transform/Cargo.toml index f6e3f12e3..3a5982fae 100644 --- a/napi/transform/Cargo.toml +++ b/napi/transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxc_transform_napi" -version = "0.30.3" +version = "0.30.4" authors.workspace = true categories.workspace = true edition.workspace = true diff --git a/npm/oxc-parser/package.json b/npm/oxc-parser/package.json index 53e7ba32d..609710a4a 100644 --- a/npm/oxc-parser/package.json +++ b/npm/oxc-parser/package.json @@ -1,6 +1,6 @@ { "name": "oxc-parser", - "version": "0.30.3", + "version": "0.30.4", "description": "Oxc Parser Node API", "keywords": [ "Parser" diff --git a/npm/oxc-transform/CHANGELOG.md b/npm/oxc-transform/CHANGELOG.md index 8dfb520fa..ca0435954 100644 --- a/npm/oxc-transform/CHANGELOG.md +++ b/npm/oxc-transform/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.30.4] - 2024-09-28 + +### Documentation + +- 26a273a oxc-transform: Update README (Boshen) +- e2c5baf transformer: Fix formatting of README (#6111) (overlookmotel) + ## [0.30.3] - 2024-09-27 ### Documentation diff --git a/npm/oxc-transform/package.json b/npm/oxc-transform/package.json index eb0cbeee7..62d275d49 100644 --- a/npm/oxc-transform/package.json +++ b/npm/oxc-transform/package.json @@ -1,6 +1,6 @@ { "name": "oxc-transform", - "version": "0.30.3", + "version": "0.30.4", "description": "Oxc transform Node API", "keywords": [ "transform" diff --git a/wasm/parser/package.json b/wasm/parser/package.json index 766785d5b..469ac69d1 100644 --- a/wasm/parser/package.json +++ b/wasm/parser/package.json @@ -1,6 +1,6 @@ { "name": "@oxc-parser/wasm", - "version": "0.30.3", + "version": "0.30.4", "description": "Wasm target for the oxc parser.", "packageManager": "pnpm@9.9.0", "keywords": [