Skip to content

Commit

Permalink
Publish crates v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed Feb 3, 2024
1 parent 52e3244 commit d2b304b
Show file tree
Hide file tree
Showing 15 changed files with 49 additions and 49 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,18 @@ missing_const_for_fn = "allow"

[workspace.dependencies]
# publish = true
oxc = { version = "0.5.0", path = "crates/oxc" }
oxc_allocator = { version = "0.5.0", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.5.0", path = "crates/oxc_ast" }
oxc_codegen = { version = "0.5.0", path = "crates/oxc_codegen" }
oxc_diagnostics = { version = "0.5.0", path = "crates/oxc_diagnostics" }
oxc_index = { version = "0.5.0", path = "crates/oxc_index" }
oxc_minifier = { version = "0.5.0", path = "crates/oxc_minifier" }
oxc_parser = { version = "0.5.0", path = "crates/oxc_parser" }
oxc_semantic = { version = "0.5.0", path = "crates/oxc_semantic" }
oxc_span = { version = "0.5.0", path = "crates/oxc_span" }
oxc_syntax = { version = "0.5.0", path = "crates/oxc_syntax" }
oxc_transformer = { version = "0.5.0", path = "crates/oxc_transformer" }
oxc = { version = "0.6.0", path = "crates/oxc" }
oxc_allocator = { version = "0.6.0", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.6.0", path = "crates/oxc_ast" }
oxc_codegen = { version = "0.6.0", path = "crates/oxc_codegen" }
oxc_diagnostics = { version = "0.6.0", path = "crates/oxc_diagnostics" }
oxc_index = { version = "0.6.0", path = "crates/oxc_index" }
oxc_minifier = { version = "0.6.0", path = "crates/oxc_minifier" }
oxc_parser = { version = "0.6.0", path = "crates/oxc_parser" }
oxc_semantic = { version = "0.6.0", path = "crates/oxc_semantic" }
oxc_span = { version = "0.6.0", path = "crates/oxc_span" }
oxc_syntax = { version = "0.6.0", path = "crates/oxc_syntax" }
oxc_transformer = { version = "0.6.0", path = "crates/oxc_transformer" }

# publish = false
oxc_macros = { path = "crates/oxc_macros" }
Expand Down
26 changes: 13 additions & 13 deletions MAINTENANCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0/0.5.0/' Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_allocator/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_ast/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_codegen/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_diagnostics/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_index/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_minifier/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_parser/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_semantic/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_span/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_syntax/Cargo.toml
sed -i '' 's/0.4.0/0.5.0/' crates/oxc_transformer/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_allocator/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_ast/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_codegen/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_diagnostics/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_index/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_minifier/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_parser/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_semantic/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_span/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_syntax/Cargo.toml
sed -i '' 's/0.5.0/0.6.0/' crates/oxc_transformer/Cargo.toml

cargo build
git add .
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc"
version = "0.5.0"
version = "0.6.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_allocator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_allocator"
version = "0.5.0"
version = "0.6.0"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_ast"
version = "0.5.0"
version = "0.6.0"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_codegen"
version = "0.5.0"
version = "0.6.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_diagnostics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_diagnostics"
version = "0.5.0"
version = "0.6.0"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_index"
version = "0.5.0"
version = "0.6.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_minifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_minifier"
version = "0.5.0"
version = "0.6.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_parser"
version = "0.5.0"
version = "0.6.0"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_semantic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_semantic"
version = "0.5.0"
version = "0.6.0"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_span/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_span"
version = "0.5.0"
version = "0.6.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_syntax"
version = "0.5.0"
version = "0.6.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_transformer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_transformer"
version = "0.5.0"
version = "0.6.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down

0 comments on commit d2b304b

Please sign in to comment.