mirror of
https://github.com/danbulant/oxc
synced 2026-05-22 13:48:55 +00:00
Release crates v0.11.1
This commit is contained in:
parent
a5196be341
commit
54f7cd3978
21 changed files with 86 additions and 39 deletions
26
Cargo.lock
generated
26
Cargo.lock
generated
|
|
@ -1265,7 +1265,7 @@ checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f"
|
|||
|
||||
[[package]]
|
||||
name = "oxc"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"oxc_allocator",
|
||||
"oxc_ast",
|
||||
|
|
@ -1283,7 +1283,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_allocator"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"bumpalo",
|
||||
"serde",
|
||||
|
|
@ -1292,7 +1292,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_ast"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"bitflags 2.5.0",
|
||||
"num-bigint",
|
||||
|
|
@ -1350,7 +1350,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_codegen"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"base64 0.22.0",
|
||||
"bitflags 2.5.0",
|
||||
|
|
@ -1397,7 +1397,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_diagnostics"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"miette",
|
||||
"owo-colors",
|
||||
|
|
@ -1408,7 +1408,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_index"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"index_vec",
|
||||
"static_assertions",
|
||||
|
|
@ -1493,7 +1493,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_minifier"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"insta",
|
||||
"itertools",
|
||||
|
|
@ -1538,7 +1538,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_parser"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"assert-unchecked",
|
||||
"bitflags 2.5.0",
|
||||
|
|
@ -1634,7 +1634,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_semantic"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"indexmap",
|
||||
"insta",
|
||||
|
|
@ -1656,7 +1656,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_sourcemap"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"base64-simd",
|
||||
"rayon",
|
||||
|
|
@ -1667,7 +1667,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_span"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"compact_str",
|
||||
"miette",
|
||||
|
|
@ -1678,7 +1678,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_syntax"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"bitflags 2.5.0",
|
||||
"dashmap",
|
||||
|
|
@ -1727,7 +1727,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_transformer"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"oxc_allocator",
|
||||
"oxc_ast",
|
||||
|
|
|
|||
26
Cargo.toml
26
Cargo.toml
|
|
@ -66,19 +66,19 @@ cargo_common_metadata = "allow" # TODO: fix this
|
|||
|
||||
[workspace.dependencies]
|
||||
# publish = true
|
||||
oxc = { version = "0.11.0", path = "crates/oxc" }
|
||||
oxc_allocator = { version = "0.11.0", path = "crates/oxc_allocator" }
|
||||
oxc_ast = { version = "0.11.0", path = "crates/oxc_ast" }
|
||||
oxc_codegen = { version = "0.11.0", path = "crates/oxc_codegen" }
|
||||
oxc_diagnostics = { version = "0.11.0", path = "crates/oxc_diagnostics" }
|
||||
oxc_index = { version = "0.11.0", path = "crates/oxc_index" }
|
||||
oxc_minifier = { version = "0.11.0", path = "crates/oxc_minifier" }
|
||||
oxc_parser = { version = "0.11.0", path = "crates/oxc_parser" }
|
||||
oxc_semantic = { version = "0.11.0", path = "crates/oxc_semantic" }
|
||||
oxc_span = { version = "0.11.0", path = "crates/oxc_span" }
|
||||
oxc_syntax = { version = "0.11.0", path = "crates/oxc_syntax" }
|
||||
oxc_transformer = { version = "0.11.0", path = "crates/oxc_transformer" }
|
||||
oxc_sourcemap = { version = "0.11.0", path = "crates/oxc_sourcemap" }
|
||||
oxc = { version = "0.11.1", path = "crates/oxc" }
|
||||
oxc_allocator = { version = "0.11.1", path = "crates/oxc_allocator" }
|
||||
oxc_ast = { version = "0.11.1", path = "crates/oxc_ast" }
|
||||
oxc_codegen = { version = "0.11.1", path = "crates/oxc_codegen" }
|
||||
oxc_diagnostics = { version = "0.11.1", path = "crates/oxc_diagnostics" }
|
||||
oxc_index = { version = "0.11.1", path = "crates/oxc_index" }
|
||||
oxc_minifier = { version = "0.11.1", path = "crates/oxc_minifier" }
|
||||
oxc_parser = { version = "0.11.1", path = "crates/oxc_parser" }
|
||||
oxc_semantic = { version = "0.11.1", path = "crates/oxc_semantic" }
|
||||
oxc_span = { version = "0.11.1", path = "crates/oxc_span" }
|
||||
oxc_syntax = { version = "0.11.1", path = "crates/oxc_syntax" }
|
||||
oxc_transformer = { version = "0.11.1", path = "crates/oxc_transformer" }
|
||||
oxc_sourcemap = { version = "0.11.1", path = "crates/oxc_sourcemap" }
|
||||
|
||||
# publish = false
|
||||
oxc_macros = { path = "crates/oxc_macros" }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_allocator"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@ All notable changes to this crate 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.11.1] - 2024-04-03
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- `FinallyClause` won't get visited as `BlockStatement` anymore. (#2881)
|
||||
|
||||
## [0.11.0] - 2024-03-30
|
||||
|
||||
### Bug Fixes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_ast"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -5,6 +5,16 @@ All notable changes to this crate 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.11.1] - 2024-04-03
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Using serde_json::to_string to quote sourcemap string (#2889)
|
||||
|
||||
### Refactor
|
||||
|
||||
- Make codegen sourcemap builder clearer (#2894)
|
||||
|
||||
## [0.11.0] - 2024-03-30
|
||||
|
||||
### Features
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_codegen"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_diagnostics"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_index"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_minifier"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_parser"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@ All notable changes to this crate 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.11.1] - 2024-04-03
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Flag function expressions with `SymbolFlags::Function` (#2891)
|
||||
|
||||
## [0.11.0] - 2024-03-30
|
||||
|
||||
### Features
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_semantic"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@ All notable changes to this crate 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.11.1] - 2024-04-03
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Using serde_json::to_string to quote sourcemap string (#2889)
|
||||
|
||||
## [0.11.0] - 2024-03-30
|
||||
|
||||
### Features
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_sourcemap"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_span"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@ All notable changes to this crate 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.11.1] - 2024-04-03
|
||||
|
||||
### Features
|
||||
|
||||
- Add compiler assumptions (#2872)
|
||||
|
||||
## [0.11.0] - 2024-03-30
|
||||
|
||||
### Features
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_syntax"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -5,6 +5,19 @@ All notable changes to this crate 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.11.1] - 2024-04-03
|
||||
|
||||
### Features
|
||||
|
||||
- Add compiler assumptions (#2872)
|
||||
- Add proposal-decorators (#2868)
|
||||
- Add react plugins (#2867)
|
||||
- Add `transform-typescript` boilerplate (#2866)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- Add serde "derive" feature to fix compile error
|
||||
|
||||
## [0.11.0] - 2024-03-30
|
||||
|
||||
### Features
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_transformer"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue