Skip to content

Commit 5ad486a

Browse files
Boshengithub-actions[bot]
authored andcommitted
chore(release): crates) v0.81.0
1 parent d79f4ec commit 5ad486a

File tree

61 files changed

+286
-83
lines changed

Some content is hidden

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

61 files changed

+286
-83
lines changed

Cargo.lock

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

Cargo.toml

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

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

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

crates/oxc/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ 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+
78
## [0.80.0] - 2025-08-03
89

910
### 📚 Documentation

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.80.0"
3+
version = "0.81.0"
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.81.0] - 2025-08-06
8+
9+
### 🧪 Testing
10+
11+
- d79f4ec parser: Track number of allocations (#12555) (camchenry)
12+
13+
714
## [0.80.0] - 2025-08-03
815

916
### 📚 Documentation

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

crates/oxc_ast/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.81.0] - 2025-08-06
8+
9+
### 💥 BREAKING CHANGES
10+
11+
- 2cc1001 ast: [**BREAKING**] Remove `ExportDefaultDeclaration` `exported` field (#12808) (overlookmotel)
12+
- 50b91ac ast: [**BREAKING**] Remove `IdentifierReference` from `qualifier` field of `TSImportType` (#12799) (camc314)
13+
14+
### 🐛 Bug Fixes
15+
16+
- 47e2c59 estree: Fix serialization of `TSImportTypeQualifier` (#12801) (camc314)
17+
18+
719
## [0.80.0] - 2025-08-03
820

921
### 💥 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.80.0"
3+
version = "0.81.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast_macros/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.81.0] - 2025-08-06
8+
9+
### 💥 BREAKING CHANGES
10+
11+
- 50b91ac ast: [**BREAKING**] Remove `IdentifierReference` from `qualifier` field of `TSImportType` (#12799) (camc314)
12+
13+
714
## [0.80.0] - 2025-08-03
815

916
### 💥 BREAKING CHANGES

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

0 commit comments

Comments
 (0)