mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
chore: release crates as v0.1.0
This commit is contained in:
parent
d587065436
commit
1012d8300c
16 changed files with 51 additions and 38 deletions
26
Cargo.lock
generated
26
Cargo.lock
generated
|
|
@ -1288,7 +1288,7 @@ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
|
|||
|
||||
[[package]]
|
||||
name = "oxc"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"oxc_allocator",
|
||||
"oxc_ast",
|
||||
|
|
@ -1306,7 +1306,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_allocator"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"bumpalo",
|
||||
"serde",
|
||||
|
|
@ -1315,7 +1315,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_ast"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"bitflags 2.3.3",
|
||||
"num-bigint",
|
||||
|
|
@ -1332,7 +1332,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_ast_lower"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"oxc_allocator",
|
||||
"oxc_ast",
|
||||
|
|
@ -1416,7 +1416,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_diagnostics"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"is-terminal",
|
||||
"miette",
|
||||
|
|
@ -1428,7 +1428,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_formatter"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"miette",
|
||||
"oxc_allocator",
|
||||
|
|
@ -1440,7 +1440,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_hir"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"bitflags 2.3.3",
|
||||
"num-bigint",
|
||||
|
|
@ -1457,7 +1457,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_index"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"index_vec",
|
||||
"static_assertions",
|
||||
|
|
@ -1500,7 +1500,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_minifier"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"bitflags 2.3.3",
|
||||
"itertools 0.11.0",
|
||||
|
|
@ -1551,7 +1551,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_parser"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"bitflags 2.3.3",
|
||||
"miette",
|
||||
|
|
@ -1604,7 +1604,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_semantic"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"bitflags 2.3.3",
|
||||
"indexmap 2.0.0",
|
||||
|
|
@ -1621,7 +1621,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_span"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"compact_str",
|
||||
"miette",
|
||||
|
|
@ -1630,7 +1630,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "oxc_syntax"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"bitflags 2.3.3",
|
||||
"oxc_index",
|
||||
|
|
|
|||
25
Cargo.toml
25
Cargo.toml
|
|
@ -15,18 +15,19 @@ categories = ["development-tools", "web-programming", "compilers"]
|
|||
|
||||
[workspace.dependencies]
|
||||
# publish = true
|
||||
oxc_allocator = { version = "0.0.7", path = "crates/oxc_allocator" }
|
||||
oxc_ast = { version = "0.0.7", path = "crates/oxc_ast" }
|
||||
oxc_ast_lower = { version = "0.0.7", path = "crates/oxc_ast_lower" }
|
||||
oxc_diagnostics = { version = "0.0.7", path = "crates/oxc_diagnostics" }
|
||||
oxc_formatter = { version = "0.0.7", path = "crates/oxc_formatter" }
|
||||
oxc_hir = { version = "0.0.7", path = "crates/oxc_hir" }
|
||||
oxc_index = { version = "0.0.7", path = "crates/oxc_index" }
|
||||
oxc_minifier = { version = "0.0.7", path = "crates/oxc_minifier" }
|
||||
oxc_parser = { version = "0.0.7", path = "crates/oxc_parser" }
|
||||
oxc_semantic = { version = "0.0.7", path = "crates/oxc_semantic" }
|
||||
oxc_span = { version = "0.0.7", path = "crates/oxc_span" }
|
||||
oxc_syntax = { version = "0.0.7", path = "crates/oxc_syntax" }
|
||||
oxc = { version = "0.1.0", path = "crates/oxc" }
|
||||
oxc_allocator = { version = "0.1.0", path = "crates/oxc_allocator" }
|
||||
oxc_ast = { version = "0.1.0", path = "crates/oxc_ast" }
|
||||
oxc_ast_lower = { version = "0.1.0", path = "crates/oxc_ast_lower" }
|
||||
oxc_diagnostics = { version = "0.1.0", path = "crates/oxc_diagnostics" }
|
||||
oxc_formatter = { version = "0.1.0", path = "crates/oxc_formatter" }
|
||||
oxc_hir = { version = "0.1.0", path = "crates/oxc_hir" }
|
||||
oxc_index = { version = "0.1.0", path = "crates/oxc_index" }
|
||||
oxc_minifier = { version = "0.1.0", path = "crates/oxc_minifier" }
|
||||
oxc_parser = { version = "0.1.0", path = "crates/oxc_parser" }
|
||||
oxc_semantic = { version = "0.1.0", path = "crates/oxc_semantic" }
|
||||
oxc_span = { version = "0.1.0", path = "crates/oxc_span" }
|
||||
oxc_syntax = { version = "0.1.0", path = "crates/oxc_syntax" }
|
||||
|
||||
# publish = false
|
||||
oxc_macros = { path = "crates/oxc_macros" }
|
||||
|
|
|
|||
12
MAINTAINANCE.md
Normal file
12
MAINTAINANCE.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Release crates
|
||||
|
||||
Manually edit all versions specified by `[workspace.dependencies]` in Cargo.toml,
|
||||
also manually edit each of the crates version.
|
||||
|
||||
Install `cargo-smart-release`, run
|
||||
|
||||
```bash
|
||||
cargo smart-release --no-changelog --no-tag --no-push --dry-run-cargo-publish oxc
|
||||
```
|
||||
|
||||
Run again with `--dry-run-cargo-publish` when everything compiles.
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_allocator"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_ast"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_ast_lower"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_diagnostics"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_formatter"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_hir"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_index"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_minifier"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_parser"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_semantic"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
edition.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_span"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "oxc_syntax"
|
||||
version = "0.0.7"
|
||||
version = "0.1.0"
|
||||
publish = true
|
||||
authors.workspace = true
|
||||
description.workspace = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue