mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 20:28:58 +00:00
Release crates v0.10.0
This commit is contained in:
parent
cbc2f5ff97
commit
a5ddb5b452
15 changed files with 49 additions and 49 deletions
24
Cargo.lock
generated
24
Cargo.lock
generated
|
|
@ -1333,7 +1333,7 @@ checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f"
|
|||
|
||||
[[package]]
|
||||
name = "oxc"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"oxc_allocator",
|
||||
"oxc_ast",
|
||||
|
|
@ -1350,7 +1350,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_allocator"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"bumpalo",
|
||||
"serde",
|
||||
|
|
@ -1359,7 +1359,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_ast"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"bitflags 2.4.2",
|
||||
"num-bigint",
|
||||
|
|
@ -1413,7 +1413,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_codegen"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"base64 0.22.0",
|
||||
"bitflags 2.4.2",
|
||||
|
|
@ -1460,7 +1460,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_diagnostics"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"miette",
|
||||
"owo-colors",
|
||||
|
|
@ -1471,7 +1471,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_index"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"index_vec",
|
||||
"static_assertions",
|
||||
|
|
@ -1556,7 +1556,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_minifier"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"insta",
|
||||
"itertools 0.12.1",
|
||||
|
|
@ -1601,7 +1601,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_parser"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"assert-unchecked",
|
||||
"bitflags 2.4.2",
|
||||
|
|
@ -1698,7 +1698,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_semantic"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"indexmap",
|
||||
"insta",
|
||||
|
|
@ -1720,7 +1720,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_span"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"compact_str",
|
||||
"miette",
|
||||
|
|
@ -1731,7 +1731,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_syntax"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"bitflags 2.4.2",
|
||||
"dashmap",
|
||||
|
|
@ -1781,7 +1781,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_transformer"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
dependencies = [
|
||||
"bitflags 2.4.2",
|
||||
"oxc_allocator",
|
||||
|
|
|
|||
24
Cargo.toml
24
Cargo.toml
|
|
@ -66,18 +66,18 @@ cargo_common_metadata = "allow" # TODO: fix this
|
|||
|
||||
[workspace.dependencies]
|
||||
# publish = true
|
||||
oxc = { version = "0.9.0", path = "crates/oxc" }
|
||||
oxc_allocator = { version = "0.9.0", path = "crates/oxc_allocator" }
|
||||
oxc_ast = { version = "0.9.0", path = "crates/oxc_ast" }
|
||||
oxc_codegen = { version = "0.9.0", path = "crates/oxc_codegen" }
|
||||
oxc_diagnostics = { version = "0.9.0", path = "crates/oxc_diagnostics" }
|
||||
oxc_index = { version = "0.9.0", path = "crates/oxc_index" }
|
||||
oxc_minifier = { version = "0.9.0", path = "crates/oxc_minifier" }
|
||||
oxc_parser = { version = "0.9.0", path = "crates/oxc_parser" }
|
||||
oxc_semantic = { version = "0.9.0", path = "crates/oxc_semantic" }
|
||||
oxc_span = { version = "0.9.0", path = "crates/oxc_span" }
|
||||
oxc_syntax = { version = "0.9.0", path = "crates/oxc_syntax" }
|
||||
oxc_transformer = { version = "0.9.0", path = "crates/oxc_transformer" }
|
||||
oxc = { version = "0.10.0", path = "crates/oxc" }
|
||||
oxc_allocator = { version = "0.10.0", path = "crates/oxc_allocator" }
|
||||
oxc_ast = { version = "0.10.0", path = "crates/oxc_ast" }
|
||||
oxc_codegen = { version = "0.10.0", path = "crates/oxc_codegen" }
|
||||
oxc_diagnostics = { version = "0.10.0", path = "crates/oxc_diagnostics" }
|
||||
oxc_index = { version = "0.10.0", path = "crates/oxc_index" }
|
||||
oxc_minifier = { version = "0.10.0", path = "crates/oxc_minifier" }
|
||||
oxc_parser = { version = "0.10.0", path = "crates/oxc_parser" }
|
||||
oxc_semantic = { version = "0.10.0", path = "crates/oxc_semantic" }
|
||||
oxc_span = { version = "0.10.0", path = "crates/oxc_span" }
|
||||
oxc_syntax = { version = "0.10.0", path = "crates/oxc_syntax" }
|
||||
oxc_transformer = { version = "0.10.0", path = "crates/oxc_transformer" }
|
||||
|
||||
# publish = false
|
||||
oxc_macros = { path = "crates/oxc_macros" }
|
||||
|
|
|
|||
|
|
@ -28,19 +28,19 @@ Manually edit all versions specified by `[workspace.dependencies]` in Cargo.toml
|
|||
also manually edit each of the crates version.
|
||||
|
||||
```bash
|
||||
sed -i '' 's/0.8.0/0.9.0/' Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_allocator/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_ast/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_codegen/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_diagnostics/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_index/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_minifier/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_parser/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_semantic/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_span/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_syntax/Cargo.toml
|
||||
sed -i '' 's/0.8.0/0.9.0/' crates/oxc_transformer/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_allocator/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_ast/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_codegen/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_diagnostics/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_index/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_minifier/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_parser/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_semantic/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_span/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_syntax/Cargo.toml
|
||||
sed -i '' 's/0.9.0/0.10.0/' crates/oxc_transformer/Cargo.toml
|
||||
|
||||
cargo build
|
||||
git add .
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_allocator"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_ast"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_codegen"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_diagnostics"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_index"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_minifier"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_parser"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_semantic"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_span"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_syntax"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_transformer"
|
||||
version = "0.9.0"
|
||||
version = "0.10.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue