Skip to content

Commit

Permalink
chore: Publish crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Nov 8, 2022
1 parent f483224 commit 410ec6f
Show file tree
Hide file tree
Showing 16 changed files with 85 additions and 82 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,9 @@



- **(css/parser)** Fix parsing of `supports()` (#6333) ([f483224](https://github.com/swc-project/swc/commit/f4832247bc5a831658d8a6c15678eaf6412fa0c1))


- **(es/compat)** Fix chained op-assignment of super properties (#6319) ([064baa3](https://github.com/swc-project/swc/commit/064baa3052425dca7db869195252acee0f1350b6))


Expand Down
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions crates/swc_core/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.40.52"
version = "0.40.53"
[package.metadata.docs.rs]
features = [
"common_perf",
Expand Down Expand Up @@ -323,13 +323,13 @@ swc_atoms = { optional = true, version = "0.4.24", path =
swc_bundler = { optional = true, version = "0.192.72", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
swc_common = { optional = true, version = "0.29.13", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.124.5", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.134.16", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.99.17", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.133.16", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.135.16", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.121.5", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.123.5", path = "../swc_css_visit" }
swc_css_ast = { optional = true, version = "0.124.6", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.134.17", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.99.18", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.133.17", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.135.17", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.121.6", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.123.6", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.94.18", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "0.127.30", path = "../swc_ecma_codegen" }
swc_ecma_loader = { optional = true, version = "0.41.14", path = "../swc_ecma_loader" }
Expand All @@ -355,7 +355,7 @@ swc_plugin_proxy = { optional = true, version = "0.22.18", path
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.31.13", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_css_compat = { version = "0.9.16", path = "../swc_css_compat", optional = true }
swc_css_compat = { version = "0.9.17", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.77.30", path = "../swc_plugin_runner", default-features = false }

[build-dependencies]
Expand Down
20 changes: 10 additions & 10 deletions crates/swc_css/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.137.17"
version = "0.137.18"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -22,12 +22,12 @@ modules = ["swc_css_modules"]
prefixer = ["swc_css_prefixer"]

[dependencies]
swc_css_ast = {version = "0.124.5", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.16", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.9.16", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.99.17", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.10.16", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.133.16", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.135.16", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.121.5", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.5", path = "../swc_css_visit"}
swc_css_ast = {version = "0.124.6", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.17", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.9.17", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.99.18", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.10.17", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.133.17", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.135.17", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.121.6", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.6", path = "../swc_css_visit"}
2 changes: 1 addition & 1 deletion crates/swc_css_ast/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css_ast"
repository = "https://github.com/swc-project/swc.git"
version = "0.124.5"
version = "0.124.6"

[lib]
bench = false
Expand Down
10 changes: 5 additions & 5 deletions crates/swc_css_codegen/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.134.16"
version = "0.134.17"

[lib]
bench = false
Expand All @@ -19,14 +19,14 @@ rustc-hash = "1.1.0"
serde = "1.0.127"
swc_atoms = { version = "0.4.24", path = "../swc_atoms" }
swc_common = { version = "0.29.13", path = "../swc_common" }
swc_css_ast = { version = "0.124.5", path = "../swc_css_ast" }
swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" }
swc_css_codegen_macros = { version = "0.2.0", path = "../swc_css_codegen_macros" }
swc_css_utils = { version = "0.121.5", path = "../swc_css_utils" }
swc_css_utils = { version = "0.121.6", path = "../swc_css_utils" }

[dev-dependencies]
swc_common = { version = "0.29.13", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.133.16", path = "../swc_css_parser" }
swc_css_visit = { version = "0.123.5", path = "../swc_css_visit" }
swc_css_parser = { version = "0.133.17", path = "../swc_css_parser" }
swc_css_visit = { version = "0.123.6", path = "../swc_css_visit" }
testing = { version = "0.31.13", path = "../testing" }
12 changes: 6 additions & 6 deletions crates/swc_css_compat/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.9.16"
version = "0.9.17"

[lib]
bench = false
Expand All @@ -18,11 +18,11 @@ serde = {version = "1.0.118", features = ["derive"]}
serde_json = "1.0.61"
swc_atoms = {version = "0.4.24", path = "../swc_atoms"}
swc_common = {version = "0.29.13", path = "../swc_common"}
swc_css_ast = {version = "0.124.5", path = "../swc_css_ast"}
swc_css_utils = {version = "0.121.5", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.5", path = "../swc_css_visit"}
swc_css_ast = {version = "0.124.6", path = "../swc_css_ast"}
swc_css_utils = {version = "0.121.6", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.6", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.134.16", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.16", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.134.17", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.17", path = "../swc_css_parser"}
testing = {version = "0.31.13", path = "../testing"}
8 changes: 4 additions & 4 deletions crates/swc_css_lints/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_lints"
repository = "https://github.com/swc-project/swc.git"
version = "0.43.16"
version = "0.43.17"

[lib]
bench = false
Expand All @@ -20,11 +20,11 @@ serde = { version = "1.0.133", features = ["derive"] }
swc_atoms = { version = "0.4.24", path = "../swc_atoms" }
swc_cached = { version = "0.3.15", path = "../swc_cached" }
swc_common = { version = "0.29.13", path = "../swc_common" }
swc_css_ast = { version = "0.124.5", path = "../swc_css_ast" }
swc_css_visit = { version = "0.123.5", path = "../swc_css_visit" }
swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" }
swc_css_visit = { version = "0.123.6", path = "../swc_css_visit" }
thiserror = "1.0.30"

[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.133.16", path = "../swc_css_parser" }
swc_css_parser = { version = "0.133.17", path = "../swc_css_parser" }
testing = { version = "0.31.13", path = "../testing" }
12 changes: 6 additions & 6 deletions crates/swc_css_minifier/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.99.17"
version = "0.99.18"

[lib]
bench = false
Expand All @@ -16,14 +16,14 @@ bench = false
serde = "1.0.118"
swc_atoms = { version = "0.4.24", path = "../swc_atoms" }
swc_common = { version = "0.29.13", path = "../swc_common" }
swc_css_ast = { version = "0.124.5", path = "../swc_css_ast" }
swc_css_utils = { version = "0.121.5", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.123.5", path = "../swc_css_visit" }
swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" }
swc_css_utils = { version = "0.121.6", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.123.6", path = "../swc_css_visit" }

[dev-dependencies]
criterion = "0.3"
swc_css_codegen = { version = "0.134.16", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.133.16", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.134.17", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.133.17", path = "../swc_css_parser" }
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
testing = { version = "0.31.13", path = "../testing" }

Expand Down
12 changes: 6 additions & 6 deletions crates/swc_css_modules/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_modules"
repository = "https://github.com/swc-project/swc.git"
version = "0.10.16"
version = "0.10.17"

[lib]
bench = false
Expand All @@ -19,12 +19,12 @@ rustc-hash = "1.1.0"
serde = {version = "1", features = ["derive"]}
swc_atoms = {version = "0.4.24", path = "../swc_atoms"}
swc_common = {version = "0.29.13", path = "../swc_common"}
swc_css_ast = {version = "0.124.5", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.16", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.16", path = "../swc_css_parser"}
swc_css_visit = {version = "0.123.5", path = "../swc_css_visit"}
swc_css_ast = {version = "0.124.6", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.17", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.17", path = "../swc_css_parser"}
swc_css_visit = {version = "0.123.6", path = "../swc_css_visit"}

[dev-dependencies]
serde_json = "1"
swc_css_compat = {version = "0.9.16", path = "../swc_css_compat"}
swc_css_compat = {version = "0.9.17", path = "../swc_css_compat"}
testing = {version = "0.31.13", path = "../testing"}
6 changes: 3 additions & 3 deletions crates/swc_css_parser/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_css_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.133.16"
version = "0.133.17"

[lib]
bench = false
Expand All @@ -21,12 +21,12 @@ lexical = "6.1.0"
serde = "1.0.127"
swc_atoms = { version = "0.4.24", path = "../swc_atoms" }
swc_common = { version = "0.29.13", path = "../swc_common" }
swc_css_ast = { version = "0.124.5", path = "../swc_css_ast" }
swc_css_ast = { version = "0.124.6", path = "../swc_css_ast" }

[dev-dependencies]
criterion = "0.3"
serde_json = "1.0.66"
swc_css_visit = { version = "0.123.5", path = "../swc_css_visit" }
swc_css_visit = { version = "0.123.6", path = "../swc_css_visit" }
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
testing = { version = "0.31.13", path = "../testing" }

Expand Down
12 changes: 6 additions & 6 deletions crates/swc_css_prefixer/Cargo.toml
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.135.16"
version = "0.135.17"

[lib]
bench = false
Expand All @@ -19,11 +19,11 @@ serde = {version = "1.0.118", features = ["derive"]}
serde_json = "1.0.61"
swc_atoms = {version = "0.4.24", path = "../swc_atoms"}
swc_common = {version = "0.29.13", path = "../swc_common"}
swc_css_ast = {version = "0.124.5", path = "../swc_css_ast"}
swc_css_utils = {version = "0.121.5", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.5", path = "../swc_css_visit"}
swc_css_ast = {version = "0.124.6", path = "../swc_css_ast"}
swc_css_utils = {version = "0.121.6", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.6", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.134.16", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.16", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.134.17", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.17", path = "../swc_css_parser"}
testing = {version = "0.31.13", path = "../testing"}

0 comments on commit 410ec6f

Please sign in to comment.