Skip to content

Commit a257d97

Browse files
authored
release(crates): v0.75.1 (#12057)
1 parent a3641d2 commit a257d97

File tree

60 files changed

+331
-80
lines changed

Some content is hidden

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

60 files changed

+331
-80
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -105,31 +105,31 @@ ignore_without_reason = "allow" # FIXME
105105

106106
[workspace.dependencies]
107107
# publish = true
108-
oxc = { version = "0.75.0", path = "crates/oxc" }
109-
oxc_allocator = { version = "0.75.0", path = "crates/oxc_allocator" }
110-
oxc_ast = { version = "0.75.0", path = "crates/oxc_ast" }
111-
oxc_ast_macros = { version = "0.75.0", path = "crates/oxc_ast_macros" }
112-
oxc_ast_visit = { version = "0.75.0", path = "crates/oxc_ast_visit" }
113-
oxc_cfg = { version = "0.75.0", path = "crates/oxc_cfg" }
114-
oxc_codegen = { version = "0.75.0", path = "crates/oxc_codegen" }
115-
oxc_data_structures = { version = "0.75.0", path = "crates/oxc_data_structures" }
116-
oxc_diagnostics = { version = "0.75.0", path = "crates/oxc_diagnostics" }
117-
oxc_ecmascript = { version = "0.75.0", path = "crates/oxc_ecmascript" }
118-
oxc_estree = { version = "0.75.0", path = "crates/oxc_estree" }
119-
oxc_isolated_declarations = { version = "0.75.0", path = "crates/oxc_isolated_declarations" }
120-
oxc_mangler = { version = "0.75.0", path = "crates/oxc_mangler" }
121-
oxc_minifier = { version = "0.75.0", path = "crates/oxc_minifier" }
122-
oxc_napi = { version = "0.75.0", path = "crates/oxc_napi" }
123-
oxc_parser = { version = "0.75.0", path = "crates/oxc_parser", features = ["regular_expression"] }
124-
oxc_parser_napi = { version = "0.75.0", path = "napi/parser" }
125-
oxc_regular_expression = { version = "0.75.0", path = "crates/oxc_regular_expression" }
126-
oxc_semantic = { version = "0.75.0", path = "crates/oxc_semantic" }
127-
oxc_span = { version = "0.75.0", path = "crates/oxc_span" }
128-
oxc_syntax = { version = "0.75.0", path = "crates/oxc_syntax" }
129-
oxc_transform_napi = { version = "0.75.0", path = "napi/transform" }
130-
oxc_transformer = { version = "0.75.0", path = "crates/oxc_transformer" }
131-
oxc_transformer_plugins = { version = "0.75.0", path = "crates/oxc_transformer_plugins" }
132-
oxc_traverse = { version = "0.75.0", path = "crates/oxc_traverse" }
108+
oxc = { version = "0.75.1", path = "crates/oxc" }
109+
oxc_allocator = { version = "0.75.1", path = "crates/oxc_allocator" }
110+
oxc_ast = { version = "0.75.1", path = "crates/oxc_ast" }
111+
oxc_ast_macros = { version = "0.75.1", path = "crates/oxc_ast_macros" }
112+
oxc_ast_visit = { version = "0.75.1", path = "crates/oxc_ast_visit" }
113+
oxc_cfg = { version = "0.75.1", path = "crates/oxc_cfg" }
114+
oxc_codegen = { version = "0.75.1", path = "crates/oxc_codegen" }
115+
oxc_data_structures = { version = "0.75.1", path = "crates/oxc_data_structures" }
116+
oxc_diagnostics = { version = "0.75.1", path = "crates/oxc_diagnostics" }
117+
oxc_ecmascript = { version = "0.75.1", path = "crates/oxc_ecmascript" }
118+
oxc_estree = { version = "0.75.1", path = "crates/oxc_estree" }
119+
oxc_isolated_declarations = { version = "0.75.1", path = "crates/oxc_isolated_declarations" }
120+
oxc_mangler = { version = "0.75.1", path = "crates/oxc_mangler" }
121+
oxc_minifier = { version = "0.75.1", path = "crates/oxc_minifier" }
122+
oxc_napi = { version = "0.75.1", path = "crates/oxc_napi" }
123+
oxc_parser = { version = "0.75.1", path = "crates/oxc_parser", features = ["regular_expression"] }
124+
oxc_parser_napi = { version = "0.75.1", path = "napi/parser" }
125+
oxc_regular_expression = { version = "0.75.1", path = "crates/oxc_regular_expression" }
126+
oxc_semantic = { version = "0.75.1", path = "crates/oxc_semantic" }
127+
oxc_span = { version = "0.75.1", path = "crates/oxc_span" }
128+
oxc_syntax = { version = "0.75.1", path = "crates/oxc_syntax" }
129+
oxc_transform_napi = { version = "0.75.1", path = "napi/transform" }
130+
oxc_transformer = { version = "0.75.1", path = "crates/oxc_transformer" }
131+
oxc_transformer_plugins = { version = "0.75.1", path = "crates/oxc_transformer_plugins" }
132+
oxc_traverse = { version = "0.75.1", path = "crates/oxc_traverse" }
133133

134134
# publish = false
135135
oxc_formatter = { path = "crates/oxc_formatter" }

crates/oxc/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
99

1010

1111

12+
1213
# Changelog
1314

1415
All notable changes to this package will be documented in this file.

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.75.0"
3+
version = "0.75.1"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_allocator/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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).
66

7+
## [0.75.1] - 2025-07-03
8+
9+
### 📚 Documentation
10+
11+
- ff1d42f allocator: Update comments about `bumpalo` version (#12033) (overlookmotel)
12+
13+
714
## [0.75.0] - 2025-06-25
815

916
### 💥 BREAKING CHANGES

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.75.0"
3+
version = "0.75.1"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast/CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,47 @@ 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).
66

7+
## [0.75.1] - 2025-07-03
8+
9+
### 🚀 Features
10+
11+
- 79c93e3 ast: Add `range` field to custom serializers (#11890) (Bacary Bruno Bodian)
12+
- 6a4db24 ast: Derive `Debug, Clone, Copy` on `MemberExpressionKind` (#11903) (Boshen)
13+
- be5e5e8 ast: Add `MemberExpressionKind::static_property_info` (#11900) (Boshen)
14+
15+
### 🐛 Bug Fixes
16+
17+
- 6d865af parser: Allow `extends this.B` syntax (#12038) (camchenry)
18+
- 43e6962 ast/estree: Add `range` field to `TSModuleDeclaration` (#12006) (overlookmotel)
19+
20+
### 🚜 Refactor
21+
22+
- f5ec26b ast: Fix misspelling (#12055) (overlookmotel)
23+
- f1d4086 ast: Remove `AstKind` for `ModuleDeclaration` (#12022) (camchenry)
24+
- 754c05a ast: Remove `AstKind` for `TSTypeName` (#11990) (camchenry)
25+
- 016634f ast/estree: Introduce `serialize_span` method (#12013) (overlookmotel)
26+
- 754f01d ast/estree: Move `start` and `end` fields to last (#12012) (overlookmotel)
27+
- 8f83067 ast: Remove dummy comment (#12010) (overlookmotel)
28+
- 4597311 ast/estree: Remove temp vars for `ranges` from serializer (#12007) (overlookmotel)
29+
- dc04dbc ast/estree: Simplify adding `range` field (#12005) (overlookmotel)
30+
- f7a2ae4 ast: Add `AstKind` for `AssignmentTargetPropertyIdentifier`, `AssignmentTargetPropertyProperty` (#11985) (camc314)
31+
- cfa52c2 ast: Add `AstKind` for `AssignmentTargetRest` (#11984) (camc314)
32+
- 54582cb ast: Add `AstKind` for `BindingProperty` (#11974) (camc314)
33+
- 9f6784a ast: Add `AstKind` for `TSInterfaceBody` (#11967) (camc314)
34+
- 3f50cef ast: Add `AstKind` for `TSIndexSignature` (#11966) (camc314)
35+
- 03bce3f ast: Add `AstKind` for `TSConstructorType` (#11965) (camc314)
36+
- 0cef370 ast: Add `AstKind::TemplateElement` (#11955) (camchenry)
37+
38+
### 📚 Documentation
39+
40+
- 81ff679 ast: Improve docs for TS types (#12053) (overlookmotel)
41+
- 4a408c3 napi/parser: Document options (#12008) (overlookmotel)
42+
43+
### ⚡ Performance
44+
45+
- 735c0d3 ast: Call `Expression::without_parentheses` only once (#12056) (overlookmotel)
46+
47+
748
## [0.75.0] - 2025-06-25
849

950
### 💥 BREAKING CHANGES

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.75.0"
3+
version = "0.75.1"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast_macros/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
99

1010

1111

12+
1213
# Changelog
1314

1415
All notable changes to this package will be documented in this file.

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.75.0"
3+
version = "0.75.1"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)