From 03f44d3d1786254c223147ff559f3d55e2d0a483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B0=95=EB=8F=99=EC=9C=A4?= Date: Wed, 23 Sep 2020 12:10:16 +0900 Subject: [PATCH] Bump version as https://github.com/denoland/deno/issues/7623 is a breaking change --- bundler/Cargo.toml | 14 +++++++------- ecmascript/Cargo.toml | 16 ++++++++-------- ecmascript/ast/Cargo.toml | 2 +- ecmascript/codegen/Cargo.toml | 6 +++--- ecmascript/dep-graph/Cargo.toml | 8 ++++---- ecmascript/jsdoc/Cargo.toml | 6 +++--- ecmascript/parser/Cargo.toml | 6 +++--- ecmascript/transforms/Cargo.toml | 14 +++++++------- ecmascript/utils/Cargo.toml | 6 +++--- ecmascript/visit/Cargo.toml | 4 ++-- 10 files changed, 41 insertions(+), 41 deletions(-) diff --git a/bundler/Cargo.toml b/bundler/Cargo.toml index 80b21334c05b..ea010f8b21b3 100644 --- a/bundler/Cargo.toml +++ b/bundler/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0/MIT" name = "swc_bundler" repository = "https://github.com/swc-project/swc.git" -version = "0.7.4" +version = "0.8.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] @@ -27,12 +27,12 @@ relative-path = "1.2" retain_mut = "=0.1.1" swc_atoms = {version = "0.2", path = "../atoms"} swc_common = {version = "0.10.0", path = "../common"} -swc_ecma_ast = {version = "0.31.0", path = "../ecmascript/ast"} -swc_ecma_codegen = {version = "0.35.0", path = "../ecmascript/codegen"} -swc_ecma_parser = {version = "0.37.0", path = "../ecmascript/parser"} -swc_ecma_transforms = {version = "0.23.1", path = "../ecmascript/transforms"} -swc_ecma_utils = {version = "0.21.0", path = "../ecmascript/utils"} -swc_ecma_visit = {version = "0.17.0", path = "../ecmascript/visit"} +swc_ecma_ast = {version = "0.32.0", path = "../ecmascript/ast"} +swc_ecma_codegen = {version = "0.36.0", path = "../ecmascript/codegen"} +swc_ecma_parser = {version = "0.38.0", path = "../ecmascript/parser"} +swc_ecma_transforms = {version = "0.24.0", path = "../ecmascript/transforms"} +swc_ecma_utils = {version = "0.22.0", path = "../ecmascript/utils"} +swc_ecma_visit = {version = "0.18.0", path = "../ecmascript/visit"} [dev-dependencies] testing = {version = "0.10.0", path = "../testing"} diff --git a/ecmascript/Cargo.toml b/ecmascript/Cargo.toml index 913b30afa466..1b3431c181e9 100644 --- a/ecmascript/Cargo.toml +++ b/ecmascript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0/MIT" name = "swc_ecmascript" repository = "https://github.com/swc-project/swc.git" -version = "0.7.11" +version = "0.8.0" [features] codegen = ["swc_ecma_codegen"] @@ -20,12 +20,12 @@ const-modules = ["swc_ecma_transforms", "swc_ecma_transforms/const-modules"] react = ["swc_ecma_transforms", "swc_ecma_transforms/react"] [dependencies] -swc_ecma_ast = {version = "0.31.0", path = "./ast"} -swc_ecma_codegen = {version = "0.35.2", path = "./codegen", optional = true} -swc_ecma_dep_graph = {version = "0.3.0", path = "./dep-graph", optional = true} -swc_ecma_parser = {version = "0.37.2", path = "./parser", optional = true} -swc_ecma_transforms = {version = "0.23.15", path = "./transforms", optional = true} -swc_ecma_utils = {version = "0.21.0", path = "./utils", optional = true} -swc_ecma_visit = {version = "0.17.2", path = "./visit", optional = true} +swc_ecma_ast = {version = "0.32.0", path = "./ast"} +swc_ecma_codegen = {version = "0.36.0", path = "./codegen", optional = true} +swc_ecma_dep_graph = {version = "0.4.0", path = "./dep-graph", optional = true} +swc_ecma_parser = {version = "0.38.0", path = "./parser", optional = true} +swc_ecma_transforms = {version = "0.24.0", path = "./transforms", optional = true} +swc_ecma_utils = {version = "0.22.0", path = "./utils", optional = true} +swc_ecma_visit = {version = "0.18.0", path = "./visit", optional = true} [dev-dependencies] diff --git a/ecmascript/ast/Cargo.toml b/ecmascript/ast/Cargo.toml index c2650e601851..5a466f17ee89 100644 --- a/ecmascript/ast/Cargo.toml +++ b/ecmascript/ast/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0/MIT" name = "swc_ecma_ast" repository = "https://github.com/swc-project/swc.git" -version = "0.31.0" +version = "0.32.0" [dependencies] enum_kind = {version = "0.2", path = "../../macros/enum_kind"} diff --git a/ecmascript/codegen/Cargo.toml b/ecmascript/codegen/Cargo.toml index 67292d9299dd..345fa52b698f 100644 --- a/ecmascript/codegen/Cargo.toml +++ b/ecmascript/codegen/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0/MIT" name = "swc_ecma_codegen" repository = "https://github.com/swc-project/swc.git" -version = "0.35.3" +version = "0.36.0" [dependencies] bitflags = "1" @@ -15,10 +15,10 @@ num-bigint = {version = "0.2", features = ["serde"]} sourcemap = "6" swc_atoms = {version = "0.2", path = "../../atoms"} swc_common = {version = "0.10.0", path = "../../common"} -swc_ecma_ast = {version = "0.31.0", path = "../ast"} +swc_ecma_ast = {version = "0.32.0", path = "../ast"} swc_ecma_codegen_macros = {version = "0.5", path = "./macros"} [dev-dependencies] swc_common = {version = "0.10.0", path = "../../common", features = ["sourcemap"]} -swc_ecma_parser = {version = "0.37.0", path = "../parser"} +swc_ecma_parser = {version = "0.38.0", path = "../parser"} testing = {version = "0.10.0", path = "../../testing"} diff --git a/ecmascript/dep-graph/Cargo.toml b/ecmascript/dep-graph/Cargo.toml index b279ff2ac49a..654d4836b8a4 100644 --- a/ecmascript/dep-graph/Cargo.toml +++ b/ecmascript/dep-graph/Cargo.toml @@ -6,14 +6,14 @@ edition = "2018" license = "Apache-2.0/MIT" name = "swc_ecma_dep_graph" repository = "https://github.com/swc-project/swc.git" -version = "0.3.0" +version = "0.4.0" [dependencies] swc_atoms = {version = "0.2", path = "../../atoms"} swc_common = {version = "0.10.1", path = "../../common"} -swc_ecma_ast = {version = "0.31.0", path = "../ast"} -swc_ecma_visit = {version = "0.17.0", path = "../visit"} +swc_ecma_ast = {version = "0.32.0", path = "../ast"} +swc_ecma_visit = {version = "0.18.0", path = "../visit"} [dev-dependencies] -swc_ecma_parser = {version = "0.37.0", path = "../parser"} +swc_ecma_parser = {version = "0.38.0", path = "../parser"} testing = {version = "0.10.0", path = "../../testing"} diff --git a/ecmascript/jsdoc/Cargo.toml b/ecmascript/jsdoc/Cargo.toml index cfabea938d61..a508bdc45e42 100644 --- a/ecmascript/jsdoc/Cargo.toml +++ b/ecmascript/jsdoc/Cargo.toml @@ -5,7 +5,7 @@ documentation = "https://swc.rs/rustdoc/jsdoc/" edition = "2018" license = "Apache-2.0/MIT" name = "jsdoc" -version = "0.5.1" +version = "0.6.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -18,7 +18,7 @@ swc_common = {version = "0.10.0", path = "../../common"} [dev-dependencies] anyhow = "1" dashmap = "3" -swc_ecma_ast = {version = "0.31.0", path = "../ast"} -swc_ecma_parser = {version = "0.37.0", path = "../parser"} +swc_ecma_ast = {version = "0.32.0", path = "../ast"} +swc_ecma_parser = {version = "0.38.0", path = "../parser"} testing = {version = "0.10.0", path = "../../testing"} walkdir = "2" diff --git a/ecmascript/parser/Cargo.toml b/ecmascript/parser/Cargo.toml index 7d73981d901a..115677d15620 100644 --- a/ecmascript/parser/Cargo.toml +++ b/ecmascript/parser/Cargo.toml @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"] license = "Apache-2.0/MIT" name = "swc_ecma_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.37.2" +version = "0.38.0" [features] default = [] @@ -22,9 +22,9 @@ serde = {version = "1", features = ["derive"]} smallvec = "1" swc_atoms = {version = "0.2", path = "../../atoms"} swc_common = {version = "0.10.0", path = "../../common"} -swc_ecma_ast = {version = "0.31.0", path = "../ast"} +swc_ecma_ast = {version = "0.32.0", path = "../ast"} swc_ecma_parser_macros = {version = "0.4.1", path = "./macros"} -swc_ecma_visit = {version = "0.17.0", path = "../visit"} +swc_ecma_visit = {version = "0.18.0", path = "../visit"} unicode-xid = "0.2" [dev-dependencies] diff --git a/ecmascript/transforms/Cargo.toml b/ecmascript/transforms/Cargo.toml index 47f3286e5d43..8ad8d08c77b1 100644 --- a/ecmascript/transforms/Cargo.toml +++ b/ecmascript/transforms/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0/MIT" name = "swc_ecma_transforms" repository = "https://github.com/swc-project/swc.git" -version = "0.23.16" +version = "0.24.0" [features] const-modules = ["dashmap"] @@ -21,7 +21,7 @@ either = "1.5" fxhash = "0.2" indexmap = "1" is-macro = "0.1" -jsdoc = {version = "0.5.0", path = "../jsdoc"} +jsdoc = {version = "0.6.0", path = "../jsdoc"} log = "0.4.8" once_cell = "1" ordered-float = "1.0.1" @@ -34,17 +34,17 @@ serde_json = "1" smallvec = "1" swc_atoms = {version = "0.2.0", path = "../../atoms"} swc_common = {version = "0.10.0", path = "../../common"} -swc_ecma_ast = {version = "0.31.0", path = "../ast"} -swc_ecma_parser = {version = "0.37.0", path = "../parser"} +swc_ecma_ast = {version = "0.32.0", path = "../ast"} +swc_ecma_parser = {version = "0.38.0", path = "../parser"} swc_ecma_transforms_macros = {version = "0.1.1", path = "./macros"} -swc_ecma_utils = {version = "0.21.0", path = "../utils"} -swc_ecma_visit = {version = "0.17.0", path = "../visit"} +swc_ecma_utils = {version = "0.22.0", path = "../utils"} +swc_ecma_visit = {version = "0.18.0", path = "../visit"} unicode-xid = "0.2" [dev-dependencies] pretty_assertions = "0.6" sourcemap = "6" -swc_ecma_codegen = {version = "0.35.0", path = "../codegen"} +swc_ecma_codegen = {version = "0.36.0", path = "../codegen"} tempfile = "3" testing = {version = "0.10.0", path = "../../testing"} walkdir = "2" diff --git a/ecmascript/utils/Cargo.toml b/ecmascript/utils/Cargo.toml index be6a615d0d82..eeba37f4c56d 100644 --- a/ecmascript/utils/Cargo.toml +++ b/ecmascript/utils/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "Apache-2.0/MIT" name = "swc_ecma_utils" repository = "https://github.com/swc-project/swc.git" -version = "0.21.0" +version = "0.22.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -15,8 +15,8 @@ once_cell = "1" scoped-tls = "1" swc_atoms = {version = "0.2.0", path = "../../atoms"} swc_common = {version = "0.10.0", path = "../../common"} -swc_ecma_ast = {version = "0.31.0", path = "../ast"} -swc_ecma_visit = {version = "0.17.0", path = "../visit"} +swc_ecma_ast = {version = "0.32.0", path = "../ast"} +swc_ecma_visit = {version = "0.18.0", path = "../visit"} unicode-xid = "0.2" [dev-dependencies] diff --git a/ecmascript/visit/Cargo.toml b/ecmascript/visit/Cargo.toml index 08e6adfc90be..3e9c84d361de 100644 --- a/ecmascript/visit/Cargo.toml +++ b/ecmascript/visit/Cargo.toml @@ -6,11 +6,11 @@ edition = "2018" license = "Apache-2.0/MIT" name = "swc_ecma_visit" repository = "https://github.com/swc-project/swc.git" -version = "0.17.2" +version = "0.18.0" [dependencies] num-bigint = {version = "0.2", features = ["serde"]} swc_atoms = {version = "0.2", path = "../../atoms"} swc_common = {version = "0.10.0", path = "../../common"} -swc_ecma_ast = {version = "0.31.0", path = "../ast"} +swc_ecma_ast = {version = "0.32.0", path = "../ast"} swc_visit = {version = "0.2.0", path = "../../visit"}