Release oxc_ast@0.0.4 oxc_parser@0.0.4 oxc_semantic@0.0.3

This commit is contained in:
Boshen 2023-04-05 20:59:50 +08:00
parent 0674899b88
commit 513931f672
No known key found for this signature in database
GPG key ID: 9C7A8C8AB22BEBD1
5 changed files with 9 additions and 9 deletions

6
Cargo.lock generated
View file

@ -891,7 +891,7 @@ dependencies = [
[[package]]
name = "oxc_ast"
version = "0.0.3"
version = "0.0.4"
dependencies = [
"bitflags",
"compact_str",
@ -1028,7 +1028,7 @@ dependencies = [
[[package]]
name = "oxc_parser"
version = "0.0.3"
version = "0.0.4"
dependencies = [
"bitflags",
"miette",
@ -1053,7 +1053,7 @@ dependencies = [
[[package]]
name = "oxc_semantic"
version = "0.0.2"
version = "0.0.3"
dependencies = [
"bitflags",
"indextree",

View file

@ -16,11 +16,11 @@ repository = "https://github.com/Boshen/oxc"
[workspace.dependencies]
oxc_allocator = { version = "0.0.1", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.0.3", path = "crates/oxc_ast" }
oxc_ast = { version = "0.0.4", path = "crates/oxc_ast" }
oxc_diagnostics = { version = "0.0.3", path = "crates/oxc_diagnostics" }
oxc_parser = { version = "0.0.3", path = "crates/oxc_parser" }
oxc_parser = { version = "0.0.4", path = "crates/oxc_parser" }
oxc_printer = { version = "0.0.3", path = "crates/oxc_printer" }
oxc_semantic = { version = "0.0.2", path = "crates/oxc_semantic" }
oxc_semantic = { version = "0.0.3", path = "crates/oxc_semantic" }
oxc_linter = { version = "0.0.0", path = "crates/oxc_linter" }
oxc_macros = { version = "0.0.0", path = "crates/oxc_macros" }

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_ast"
version = "0.0.3"
version = "0.0.4"
authors.workspace = true
description.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_parser"
version = "0.0.3"
version = "0.0.4"
authors.workspace = true
description.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_semantic"
version = "0.0.2"
version = "0.0.3"
authors.workspace = true
description.workspace = true
edition.workspace = true