Bump versions

This commit is contained in:
강동윤 2020-08-21 20:06:37 +09:00
parent e6191447fe
commit c475ab7f92
9 changed files with 19 additions and 19 deletions

View File

@ -17,12 +17,12 @@ concurrent = ["swc_common/concurrent", "dashmap", "rayon"]
[dependencies] [dependencies]
swc_atoms = { version = "0.2", path = "../atoms" } swc_atoms = { version = "0.2", path = "../atoms" }
swc_common = { version = "0.9", path = "../common" } swc_common = { version = "0.9", path = "../common" }
swc_ecma_ast = { version = "0.28", path = "../ecmascript/ast" } swc_ecma_ast = { version = "0.29.0", path = "../ecmascript/ast" }
swc_ecma_codegen = { version = "0.33.0", path = "../ecmascript/codegen" } swc_ecma_codegen = { version = "0.33.0", path = "../ecmascript/codegen" }
swc_ecma_parser = { version = "0.35.0", path = "../ecmascript/parser" } swc_ecma_parser = { version = "0.35.0", path = "../ecmascript/parser" }
swc_ecma_transforms = { version = "0.21.0", path = "../ecmascript/transforms" } swc_ecma_transforms = { version = "0.21.0", path = "../ecmascript/transforms" }
swc_ecma_utils = { version = "0.18.0", path = "../ecmascript/utils" } swc_ecma_utils = { version = "0.19.0", path = "../ecmascript/utils" }
swc_ecma_visit = { version = "0.14.0", path = "../ecmascript/visit" } swc_ecma_visit = { version = "0.15.0", path = "../ecmascript/visit" }
anyhow = "1" anyhow = "1"
crc = "1.8" crc = "1.8"
radix_fmt = "1" radix_fmt = "1"

View File

@ -16,11 +16,11 @@ transforms = ["swc_ecma_transforms"]
visit = ["swc_ecma_visit"] visit = ["swc_ecma_visit"]
[dependencies] [dependencies]
swc_ecma_ast = { version = "0.28.0", path ="./ast" } swc_ecma_ast = { version = "0.29.0", path ="./ast" }
swc_ecma_codegen = { version = "0.33.0", path ="./codegen", optional = true } swc_ecma_codegen = { version = "0.33.0", path ="./codegen", optional = true }
swc_ecma_parser = { version = "0.35.0", path ="./parser", optional = true } swc_ecma_parser = { version = "0.35.0", path ="./parser", optional = true }
swc_ecma_utils = { version = "0.18.0", path ="./utils", optional = true } swc_ecma_utils = { version = "0.19.0", path ="./utils", optional = true }
swc_ecma_transforms = { version = "0.21.0", path ="./transforms", optional = true } swc_ecma_transforms = { version = "0.21.0", path ="./transforms", optional = true }
swc_ecma_visit = { version = "0.14.0", path ="./visit", optional = true } swc_ecma_visit = { version = "0.15.0", path ="./visit", optional = true }
[dev-dependencies] [dev-dependencies]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "swc_ecma_ast" name = "swc_ecma_ast"
version = "0.28.0" version = "0.29.0"
authors = ["강동윤 <kdy1997.dev@gmail.com>"] authors = ["강동윤 <kdy1997.dev@gmail.com>"]
license = "Apache-2.0/MIT" license = "Apache-2.0/MIT"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"

View File

@ -13,7 +13,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
bitflags = "1" bitflags = "1"
swc_atoms = { version = "0.2", path ="../../atoms" } swc_atoms = { version = "0.2", path ="../../atoms" }
swc_common = { version = "0.9.0", path ="../../common" } swc_common = { version = "0.9.0", path ="../../common" }
swc_ecma_ast = { version = "0.28.0", path ="../ast" } swc_ecma_ast = { version = "0.29.0", path ="../ast" }
swc_ecma_codegen_macros = { version = "0.5", path ="./macros" } swc_ecma_codegen_macros = { version = "0.5", path ="./macros" }
sourcemap = "6" sourcemap = "6"
num-bigint = { version = "0.2", features = ["serde"] } num-bigint = { version = "0.2", features = ["serde"] }

View File

@ -16,7 +16,7 @@ nom = "5.1.2"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
[dev-dependencies] [dev-dependencies]
swc_ecma_ast = { version = "0.28.0", path = "../ast" } swc_ecma_ast = { version = "0.29.0", path = "../ast" }
swc_ecma_parser = { version = "0.35.0", path = "../parser" } swc_ecma_parser = { version = "0.35.0", path = "../parser" }
testing = { version = "0.9.0", path = "../../testing" } testing = { version = "0.9.0", path = "../../testing" }
anyhow = "1" anyhow = "1"

View File

@ -15,9 +15,9 @@ default = []
[dependencies] [dependencies]
swc_atoms = { version = "0.2", path ="../../atoms" } swc_atoms = { version = "0.2", path ="../../atoms" }
swc_common = { version = "0.9.0", path ="../../common" } swc_common = { version = "0.9.0", path ="../../common" }
swc_ecma_ast = { version = "0.28.0", path ="../ast" } swc_ecma_ast = { version = "0.29.0", path ="../ast" }
swc_ecma_parser_macros = { version = "0.4.1", path ="./macros" } swc_ecma_parser_macros = { version = "0.4.1", path ="./macros" }
swc_ecma_visit = { version = "0.14.0", path ="../visit" } swc_ecma_visit = { version = "0.15.0", path ="../visit" }
enum_kind = { version = "0.2", path ="../../macros/enum_kind" } enum_kind = { version = "0.2", path ="../../macros/enum_kind" }
unicode-xid = "0.2" unicode-xid = "0.2"
log = "0.4" log = "0.4"

View File

@ -17,10 +17,10 @@ default = []
jsdoc = { version = "0.3.0", path ="../jsdoc" } jsdoc = { version = "0.3.0", path ="../jsdoc" }
swc_atoms = { version = "0.2.0", path ="../../atoms" } swc_atoms = { version = "0.2.0", path ="../../atoms" }
swc_common = { version = "0.9.0", path ="../../common" } swc_common = { version = "0.9.0", path ="../../common" }
swc_ecma_ast = { version = "0.28.0", path ="../ast" } swc_ecma_ast = { version = "0.29.0", path ="../ast" }
swc_ecma_utils = { version = "0.18.0", path ="../utils" } swc_ecma_utils = { version = "0.19.0", path ="../utils" }
swc_ecma_parser = { version = "0.35.0", path ="../parser" } swc_ecma_parser = { version = "0.35.0", path ="../parser" }
swc_ecma_visit = { version = "0.14.0", path ="../visit" } swc_ecma_visit = { version = "0.15.0", path ="../visit" }
dashmap = { version = "3", optional = true } dashmap = { version = "3", optional = true }
either = "1.5" either = "1.5"
fxhash = "0.2" fxhash = "0.2"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "swc_ecma_utils" name = "swc_ecma_utils"
version = "0.18.0" version = "0.19.0"
authors = ["강동윤 <kdy1997.dev@gmail.com>"] authors = ["강동윤 <kdy1997.dev@gmail.com>"]
license = "Apache-2.0/MIT" license = "Apache-2.0/MIT"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
@ -11,10 +11,10 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
swc_ecma_ast = { version = "0.28.0", path ="../ast" } swc_ecma_ast = { version = "0.29.0", path ="../ast" }
swc_atoms = { version = "0.2.0", path ="../../atoms" } swc_atoms = { version = "0.2.0", path ="../../atoms" }
swc_common = { version = "0.9.0", path ="../../common" } swc_common = { version = "0.9.0", path ="../../common" }
swc_ecma_visit = { version = "0.14.0", path ="../visit" } swc_ecma_visit = { version = "0.15.0", path ="../visit" }
once_cell = "1" once_cell = "1"
scoped-tls = "1" scoped-tls = "1"
unicode-xid = "0.2" unicode-xid = "0.2"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "swc_ecma_visit" name = "swc_ecma_visit"
version = "0.14.0" version = "0.15.0"
authors = ["강동윤 <kdy1997.dev@gmail.com>"] authors = ["강동윤 <kdy1997.dev@gmail.com>"]
license = "Apache-2.0/MIT" license = "Apache-2.0/MIT"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
@ -12,6 +12,6 @@ edition = "2018"
[dependencies] [dependencies]
swc_atoms = { version = "0.2", path = "../../atoms" } swc_atoms = { version = "0.2", path = "../../atoms" }
swc_common = { version = "0.9.0", path = "../../common" } swc_common = { version = "0.9.0", path = "../../common" }
swc_ecma_ast = { version = "0.28.0", path ="../ast" } swc_ecma_ast = { version = "0.29.0", path ="../ast" }
swc_visit = { version = "0.1", path ="../../visit" } swc_visit = { version = "0.1", path ="../../visit" }
num-bigint = { version = "0.2", features = ["serde"] } num-bigint = { version = "0.2", features = ["serde"] }