Skip to content

Commit

Permalink
Bump version as denoland/deno#7623 is a breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Sep 23, 2020
1 parent 7e8ff1d commit 03f44d3
Show file tree
Hide file tree
Showing 10 changed files with 41 additions and 41 deletions.
14 changes: 7 additions & 7 deletions bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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"}
16 changes: 8 additions & 8 deletions ecmascript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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]
2 changes: 1 addition & 1 deletion ecmascript/ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
6 changes: 3 additions & 3 deletions ecmascript/codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ 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"
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"}
8 changes: 4 additions & 4 deletions ecmascript/dep-graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
6 changes: 3 additions & 3 deletions ecmascript/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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"
6 changes: 3 additions & 3 deletions ecmascript/parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand All @@ -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]
Expand Down
14 changes: 7 additions & 7 deletions ecmascript/transforms/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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"
Expand All @@ -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"
6 changes: 3 additions & 3 deletions ecmascript/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions ecmascript/visit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}

0 comments on commit 03f44d3

Please sign in to comment.