Skip to content

Commit 5352483

Browse files
oxc-botBoshen
andauthored
release(crates): v0.56.4 (#9589)
## [0.56.4] - 2025-03-07 ### Bug Fixes - c08b7fc napi: Commit wasi files (Boshen) - 35626a4 npm: Change to `wasm32-wasip1-threads` target (Boshen) ### Refactor - 62bffed rust: Allow a few annoying clippy rules (#9588) (Boshen) - adf7987 transformer: Combine strings by `ctx.ast.atom_from_array` (#9401) (Dunqing) Co-authored-by: Boshen <[email protected]>
1 parent 62bffed commit 5352483

File tree

42 files changed

+139
-78
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+139
-78
lines changed

Cargo.lock

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -103,30 +103,30 @@ doc_lazy_continuation = "allow" # FIXME
103103

104104
[workspace.dependencies]
105105
# publish = true
106-
oxc = { version = "0.56.3", path = "crates/oxc" }
107-
oxc_allocator = { version = "0.56.3", path = "crates/oxc_allocator" }
108-
oxc_ast = { version = "0.56.3", path = "crates/oxc_ast" }
109-
oxc_ast_macros = { version = "0.56.3", path = "crates/oxc_ast_macros" }
110-
oxc_ast_visit = { version = "0.56.3", path = "crates/oxc_ast_visit" }
111-
oxc_cfg = { version = "0.56.3", path = "crates/oxc_cfg" }
112-
oxc_codegen = { version = "0.56.3", path = "crates/oxc_codegen" }
113-
oxc_data_structures = { version = "0.56.3", path = "crates/oxc_data_structures" }
114-
oxc_diagnostics = { version = "0.56.3", path = "crates/oxc_diagnostics" }
115-
oxc_ecmascript = { version = "0.56.3", path = "crates/oxc_ecmascript" }
116-
oxc_estree = { version = "0.56.3", path = "crates/oxc_estree" }
117-
oxc_isolated_declarations = { version = "0.56.3", path = "crates/oxc_isolated_declarations" }
118-
oxc_mangler = { version = "0.56.3", path = "crates/oxc_mangler" }
119-
oxc_minifier = { version = "0.56.3", path = "crates/oxc_minifier" }
120-
oxc_napi = { version = "0.56.3", path = "crates/oxc_napi" }
121-
oxc_parser = { version = "0.56.3", path = "crates/oxc_parser" }
122-
oxc_parser_napi = { version = "0.56.3", path = "napi/parser" }
123-
oxc_regular_expression = { version = "0.56.3", path = "crates/oxc_regular_expression" }
124-
oxc_semantic = { version = "0.56.3", path = "crates/oxc_semantic" }
125-
oxc_span = { version = "0.56.3", path = "crates/oxc_span" }
126-
oxc_syntax = { version = "0.56.3", path = "crates/oxc_syntax" }
127-
oxc_transform_napi = { version = "0.56.3", path = "napi/transform" }
128-
oxc_transformer = { version = "0.56.3", path = "crates/oxc_transformer" }
129-
oxc_traverse = { version = "0.56.3", path = "crates/oxc_traverse" }
106+
oxc = { version = "0.56.4", path = "crates/oxc" }
107+
oxc_allocator = { version = "0.56.4", path = "crates/oxc_allocator" }
108+
oxc_ast = { version = "0.56.4", path = "crates/oxc_ast" }
109+
oxc_ast_macros = { version = "0.56.4", path = "crates/oxc_ast_macros" }
110+
oxc_ast_visit = { version = "0.56.4", path = "crates/oxc_ast_visit" }
111+
oxc_cfg = { version = "0.56.4", path = "crates/oxc_cfg" }
112+
oxc_codegen = { version = "0.56.4", path = "crates/oxc_codegen" }
113+
oxc_data_structures = { version = "0.56.4", path = "crates/oxc_data_structures" }
114+
oxc_diagnostics = { version = "0.56.4", path = "crates/oxc_diagnostics" }
115+
oxc_ecmascript = { version = "0.56.4", path = "crates/oxc_ecmascript" }
116+
oxc_estree = { version = "0.56.4", path = "crates/oxc_estree" }
117+
oxc_isolated_declarations = { version = "0.56.4", path = "crates/oxc_isolated_declarations" }
118+
oxc_mangler = { version = "0.56.4", path = "crates/oxc_mangler" }
119+
oxc_minifier = { version = "0.56.4", path = "crates/oxc_minifier" }
120+
oxc_napi = { version = "0.56.4", path = "crates/oxc_napi" }
121+
oxc_parser = { version = "0.56.4", path = "crates/oxc_parser" }
122+
oxc_parser_napi = { version = "0.56.4", path = "napi/parser" }
123+
oxc_regular_expression = { version = "0.56.4", path = "crates/oxc_regular_expression" }
124+
oxc_semantic = { version = "0.56.4", path = "crates/oxc_semantic" }
125+
oxc_span = { version = "0.56.4", path = "crates/oxc_span" }
126+
oxc_syntax = { version = "0.56.4", path = "crates/oxc_syntax" }
127+
oxc_transform_napi = { version = "0.56.4", path = "napi/transform" }
128+
oxc_transformer = { version = "0.56.4", path = "crates/oxc_transformer" }
129+
oxc_traverse = { version = "0.56.4", path = "crates/oxc_traverse" }
130130

131131
# publish = false
132132
oxc_linter = { path = "crates/oxc_linter" }

crates/oxc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc"
3-
version = "0.56.3"
3+
version = "0.56.4"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_allocator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_allocator"
3-
version = "0.56.3"
3+
version = "0.56.4"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
44

55
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.
66

7+
## [0.56.4] - 2025-03-07
8+
9+
### Refactor
10+
11+
- 62bffed rust: Allow a few annoying clippy rules (#9588) (Boshen)
12+
713
## [0.56.3] - 2025-03-07
814

915
### Features

crates/oxc_ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_ast"
3-
version = "0.56.3"
3+
version = "0.56.4"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_ast_macros"
3-
version = "0.56.3"
3+
version = "0.56.4"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast_visit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_ast_visit"
3-
version = "0.56.3"
3+
version = "0.56.4"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_cfg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_cfg"
3-
version = "0.56.3"
3+
version = "0.56.4"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_codegen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_codegen"
3-
version = "0.56.3"
3+
version = "0.56.4"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)