diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fd7231630b..ac82f6e967b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,9 @@ - **(html/minifier)** Improve compression of attributes (#4849) ([c5df1a3](https://github.com/swc-project/swc/commit/c5df1a3a54e1445163efb38b4da339ccaed699d0)) + +- **(wasm)** Add json error (#4853) ([fd3501b](https://github.com/swc-project/swc/commit/fd3501bf87f4e711e72e9e8fd12f64f4cfa08157)) + ## [1.2.196] - 2022-05-31 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index e623c347003..41804767022 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2922,7 +2922,7 @@ dependencies = [ [[package]] name = "swc" -version = "0.183.0" +version = "0.184.0" dependencies = [ "ahash", "ansi_term", @@ -3045,7 +3045,7 @@ dependencies = [ [[package]] name = "swc_cli" -version = "0.57.0" +version = "0.58.0" dependencies = [ "anyhow", "atty", @@ -3840,7 +3840,7 @@ dependencies = [ [[package]] name = "swc_estree_compat" -version = "0.103.0" +version = "0.104.0" dependencies = [ "ahash", "anyhow", @@ -4143,7 +4143,7 @@ dependencies = [ [[package]] name = "swc_webpack_ast" -version = "0.101.0" +version = "0.102.0" dependencies = [ "anyhow", "rayon", diff --git a/crates/swc/Cargo.toml b/crates/swc/Cargo.toml index 19d4d49fda7..70af558edfe 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.183.0" +version = "0.184.0" [lib] bench = false diff --git a/crates/swc_cli/Cargo.toml b/crates/swc_cli/Cargo.toml index a77bacf9432..1dbdd4e55b9 100644 --- a/crates/swc_cli/Cargo.toml +++ b/crates/swc_cli/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_cli" repository = "https://github.com/swc-project/swc.git" -version = "0.57.0" +version = "0.58.0" [[bin]] bench = false @@ -31,7 +31,7 @@ rayon = "1" relative-path = "1.6.1" serde = {version = "1", features = ["derive"]} serde_json = {version = "1", features = ["unbounded_depth"]} -swc = {version = "0.183.0", path = "../swc"} +swc = {version = "0.184.0", path = "../swc"} swc_common = { version = "0.18.0", path = "../swc_common"} swc_plugin_runner = {version = "0.55.0", path = "../swc_plugin_runner", default-features = false, optional = true} swc_trace_macro = {version = "0.1.0", path = "../swc_trace_macro"} diff --git a/crates/swc_estree_compat/Cargo.toml b/crates/swc_estree_compat/Cargo.toml index f5461506310..aa8526c3d25 100644 --- a/crates/swc_estree_compat/Cargo.toml +++ b/crates/swc_estree_compat/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_estree_compat" repository = "https://github.com/swc-project/swc.git" -version = "0.103.0" +version = "0.104.0" [package.metadata.docs.rs] all-features = true @@ -38,7 +38,7 @@ swc_node_comments = {version = "0.5.0", path = "../swc_node_comments/"} [dev-dependencies] criterion = "0.3" pretty_assertions = "1.1" -swc = {version = "0.183.0", path = "../swc"} +swc = {version = "0.184.0", path = "../swc"} swc_ecma_ast = {version = "0.78.0", path = "../swc_ecma_ast"} swc_ecma_parser = {version = "0.104.0", path = "../swc_ecma_parser"} swc_ecma_transforms = {version = "0.156.0", path = "../swc_ecma_transforms/"} diff --git a/crates/swc_webpack_ast/Cargo.toml b/crates/swc_webpack_ast/Cargo.toml index 9a56afe23f2..36497f06e0b 100644 --- a/crates/swc_webpack_ast/Cargo.toml +++ b/crates/swc_webpack_ast/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_webpack_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.101.0" +version = "0.102.0" [lib] bench = false @@ -24,7 +24,7 @@ swc_ecma_transforms_base = {version = "0.86.0", path = "../swc_ecma_transforms_b swc_ecma_utils = {version = "0.85.0", path = "../swc_ecma_utils"} swc_ecma_visit = {version = "0.64.0", path = "../swc_ecma_visit"} swc_estree_ast = {version = "0.8.0", path = "../swc_estree_ast"} -swc_estree_compat = {version = "0.103.0", path = "../swc_estree_compat"} +swc_estree_compat = {version = "0.104.0", path = "../swc_estree_compat"} swc_timer = {version = "0.6.0", path = "../swc_timer"} tracing = "0.1.32"