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 Oct 27, 2022
1 parent c3944ba commit c41fe0d
Show file tree
Hide file tree
Showing 13 changed files with 51 additions and 48 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,9 @@



- **(css/parser)** Fix parsing of colors (#6260) ([c3944ba](https://github.com/swc-project/swc/commit/c3944ba2395e54c7b557f9a71639e18458dc2a97))


- **(es/typescript)** Fix stack overflow (#6250) ([28ec6e8](https://github.com/swc-project/swc/commit/28ec6e8fc70cf74722c93353c03e4fdedb21954a))

### Features
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

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

12 changes: 6 additions & 6 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.24"
version = "0.40.25"
[package.metadata.docs.rs]
features = [
"common_perf",
Expand Down Expand Up @@ -324,10 +324,10 @@ swc_bundler = { optional = true, version = "0.192.54", path
swc_cached = { optional = true, version = "0.3.15", path = "../swc_cached" }
swc_common = { optional = true, version = "0.29.12", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.124.3", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.134.9", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.99.10", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.133.9", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.135.9", path = "../swc_css_prefixer" }
swc_css_codegen = { optional = true, version = "0.134.10", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.99.11", path = "../swc_css_minifier" }
swc_css_parser = { optional = true, version = "0.133.10", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.135.10", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.121.3", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.123.3", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.94.16", path = "../swc_ecma_ast" }
Expand Down Expand Up @@ -355,7 +355,7 @@ swc_plugin_proxy = { optional = true, version = "0.22.16", path
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.31.12", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_css_compat = { version = "0.9.9", path = "../swc_css_compat", optional = true }
swc_css_compat = { version = "0.9.10", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.77.27", path = "../swc_plugin_runner", default-features = false }

[build-dependencies]
Expand Down
14 changes: 7 additions & 7 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.10"
version = "0.137.11"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -23,11 +23,11 @@ prefixer = ["swc_css_prefixer"]

[dependencies]
swc_css_ast = {version = "0.124.3", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.9", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.9.9", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.99.10", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.10.9", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.133.9", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.135.9", path = "../swc_css_prefixer", optional = true}
swc_css_codegen = {version = "0.134.10", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.9.10", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.99.11", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.10.10", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.133.10", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.135.10", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.121.3", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.3", path = "../swc_css_visit"}
4 changes: 2 additions & 2 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.9"
version = "0.134.10"

[lib]
bench = false
Expand All @@ -27,6 +27,6 @@ swc_css_utils = { version = "0.121.3", path = "../swc_css_utils" }
swc_common = { version = "0.29.12", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "0.133.9", path = "../swc_css_parser" }
swc_css_parser = { version = "0.133.10", path = "../swc_css_parser" }
swc_css_visit = { version = "0.123.3", path = "../swc_css_visit" }
testing = { version = "0.31.12", path = "../testing" }
6 changes: 3 additions & 3 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.9"
version = "0.9.10"

[lib]
bench = false
Expand All @@ -23,6 +23,6 @@ swc_css_utils = {version = "0.121.3", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.3", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.134.9", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.9", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.134.10", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.10", path = "../swc_css_parser"}
testing = {version = "0.31.12", path = "../testing"}
4 changes: 2 additions & 2 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.9"
version = "0.43.10"

[lib]
bench = false
Expand All @@ -26,5 +26,5 @@ thiserror = "1.0.30"

[dev-dependencies]
serde_json = "1.0.79"
swc_css_parser = { version = "0.133.9", path = "../swc_css_parser" }
swc_css_parser = { version = "0.133.10", path = "../swc_css_parser" }
testing = { version = "0.31.12", path = "../testing" }
6 changes: 3 additions & 3 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.10"
version = "0.99.11"

[lib]
bench = false
Expand All @@ -22,8 +22,8 @@ swc_css_visit = { version = "0.123.3", path = "../swc_css_visit" }

[dev-dependencies]
criterion = "0.3"
swc_css_codegen = { version = "0.134.9", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.133.9", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.134.10", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.133.10", path = "../swc_css_parser" }
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
testing = { version = "0.31.12", path = "../testing" }

Expand Down
8 changes: 4 additions & 4 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.9"
version = "0.10.10"

[lib]
bench = false
Expand All @@ -20,11 +20,11 @@ serde = {version = "1", features = ["derive"]}
swc_atoms = {version = "0.4.24", path = "../swc_atoms"}
swc_common = {version = "0.29.12", path = "../swc_common"}
swc_css_ast = {version = "0.124.3", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.134.9", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.9", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.134.10", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.10", path = "../swc_css_parser"}
swc_css_visit = {version = "0.123.3", path = "../swc_css_visit"}

[dev-dependencies]
serde_json = "1"
swc_css_compat = {version = "0.9.9", path = "../swc_css_compat"}
swc_css_compat = {version = "0.9.10", path = "../swc_css_compat"}
testing = {version = "0.31.12", path = "../testing"}
2 changes: 1 addition & 1 deletion 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.9"
version = "0.133.10"

[lib]
bench = false
Expand Down
6 changes: 3 additions & 3 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.9"
version = "0.135.10"

[lib]
bench = false
Expand All @@ -24,6 +24,6 @@ swc_css_utils = {version = "0.121.3", path = "../swc_css_utils/"}
swc_css_visit = {version = "0.123.3", path = "../swc_css_visit"}

[dev-dependencies]
swc_css_codegen = {version = "0.134.9", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.9", path = "../swc_css_parser"}
swc_css_codegen = {version = "0.134.10", path = "../swc_css_codegen"}
swc_css_parser = {version = "0.133.10", path = "../swc_css_parser"}
testing = {version = "0.31.12", path = "../testing"}
4 changes: 2 additions & 2 deletions crates/swc_html/Cargo.toml
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_html"
repository = "https://github.com/swc-project/swc.git"
version = "0.93.20"
version = "0.93.21"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.28.3", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.7", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.90.20", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.90.21", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.7", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.3", path = "../swc_html_visit"}
8 changes: 4 additions & 4 deletions crates/swc_html_minifier/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.90.20"
version = "0.90.21"

[lib]
bench = false
Expand All @@ -23,9 +23,9 @@ swc_atoms = { version = "0.4.24", path = "../swc_atoms" }
swc_cached = { version = "0.3.15", path = "../swc_cached" }
swc_common = { version = "0.29.12", path = "../swc_common" }
swc_css_ast = { version = "0.124.3", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.134.9", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.99.10", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.133.9", path = "../swc_css_parser" }
swc_css_codegen = { version = "0.134.10", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.99.11", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.133.10", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.94.16", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.127.26", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "0.159.54", path = "../swc_ecma_minifier" }
Expand Down

0 comments on commit c41fe0d

Please sign in to comment.