diff --git a/Cargo.lock b/Cargo.lock index 60e23a634be..ba0ef8eec4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2873,7 +2873,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.176.0" +version = "0.176.1" dependencies = [ "ahash", "ansi_term", @@ -3696,7 +3696,7 @@ dependencies = [ [[package]] name = "swc_ecma_utils" -version = "0.83.0" +version = "0.83.1" dependencies = [ "indexmap", "once_cell", @@ -3723,7 +3723,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.154.0" +version = "0.154.1" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 4bbeaa06b5c..51face79a88 100644 --- a/crates/swc/Cargo.toml +++ b/crates/swc/Cargo.toml @@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc" repository = "https://github.com/swc-project/swc.git" -version = "0.176.0" +version = "0.176.1" [lib] bench = false @@ -71,9 +71,9 @@ swc_ecma_transforms = { version = "0.151.0", path = "../swc_ecma_transforms", fe swc_ecma_transforms_base = { version = "0.82.0", path = "../swc_ecma_transforms_base" } swc_ecma_transforms_compat = { version = "0.96.0", path = "../swc_ecma_transforms_compat" } swc_ecma_transforms_optimization = { version = "0.121.0", path = "../swc_ecma_transforms_optimization" } -swc_ecma_utils = { version = "0.83.0", path = "../swc_ecma_utils" } +swc_ecma_utils = { version = "0.83.1", path = "../swc_ecma_utils" } swc_ecma_visit = { version = "0.63.0", path = "../swc_ecma_visit" } -swc_ecmascript = { version = "0.154.0", path = "../swc_ecmascript" } +swc_ecmascript = { version = "0.154.1", path = "../swc_ecmascript" } swc_error_reporters = { version = "0.1.2", path = "../swc_error_reporters" } swc_node_comments = { version = "0.4.0", path = "../swc_node_comments" } swc_plugin_proxy = { version = "0.2.1", path = "../swc_plugin_proxy", optional = true } diff --git a/crates/swc_ecma_utils/Cargo.toml b/crates/swc_ecma_utils/Cargo.toml index f0ef639b93e..e9cbbe013d9 100644 --- a/crates/swc_ecma_utils/Cargo.toml +++ b/crates/swc_ecma_utils/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_utils" repository = "https://github.com/swc-project/swc.git" -version = "0.83.0" +version = "0.83.1" [package.metadata.docs.rs] all-features = true diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 4478e3c3a42..3b2368f5578 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecmascript" repository = "https://github.com/swc-project/swc.git" -version = "0.154.0" +version = "0.154.1" [package.metadata.docs.rs] all-features = true @@ -44,7 +44,7 @@ swc_ecma_minifier = {version = "0.111.0", path = "../swc_ecma_minifier", optiona swc_ecma_parser = {version = "0.103.0", path = "../swc_ecma_parser", optional = true, default-features = false} swc_ecma_preset_env = {version = "0.126.0", path = "../swc_ecma_preset_env", optional = true} swc_ecma_transforms = {version = "0.151.0", path = "../swc_ecma_transforms", optional = true} -swc_ecma_utils = {version = "0.83.0", path = "../swc_ecma_utils", optional = true} +swc_ecma_utils = {version = "0.83.1", path = "../swc_ecma_utils", optional = true} swc_ecma_visit = {version = "0.63.0", path = "../swc_ecma_visit", optional = true} [dev-dependencies]