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 Dec 4, 2023
1 parent 7cddbc6 commit a6355c1
Show file tree
Hide file tree
Showing 12 changed files with 42 additions and 39 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -962,6 +962,9 @@
- **(common)** Mark some methods of `Input` unsafe ([#7848](https://github.com/swc-project/swc/issues/7848)) ([c657324](https://github.com/swc-project/swc/commit/c65732496e4e2aab664b7443a29f5180cba6e965))


- **(css/codegen)** Support stable rust ([#8379](https://github.com/swc-project/swc/issues/8379)) ([7cddbc6](https://github.com/swc-project/swc/commit/7cddbc618a189446d7f781a5c11f6f02bf7504e3))


- **(css/modules)** Support stable rust ([#8381](https://github.com/swc-project/swc/issues/8381)) ([0ff4157](https://github.com/swc-project/swc/commit/0ff4157375715b9bf6cf1ef791742707a24cfd70))


Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli_impl"
repository = "https://github.com/swc-project/swc.git"
version = "0.4.90"
version = "0.4.91"

[[bin]]
name = "swc"
Expand Down Expand Up @@ -40,7 +40,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"

swc_core = { version = "0.86.92", features = [
swc_core = { version = "0.86.93", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
12 changes: 6 additions & 6 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
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.86.92"
version = "0.86.93"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -331,12 +331,12 @@ swc_bundler = { optional = true, version = "0.222.76", path
swc_cached = { optional = true, version = "0.3.18", path = "../swc_cached" }
swc_common = { optional = true, version = "0.33.10", path = "../swc_common" }
swc_css_ast = { optional = true, version = "0.140.11", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.151.18", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.27.18", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.116.18", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.20", path = "../swc_css_modules" }
swc_css_codegen = { optional = true, version = "0.151.19", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.27.19", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.116.19", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.21", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.150.18", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.153.20", path = "../swc_css_prefixer" }
swc_css_prefixer = { optional = true, version = "0.153.21", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.11", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.139.11", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.110.12", path = "../swc_ecma_ast" }
Expand Down
12 changes: 6 additions & 6 deletions crates/swc_css/Cargo.toml
Original file line number Diff line number Diff line change
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.157.22"
version = "0.157.23"

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

[dependencies]
swc_css_ast = { version = "0.140.11", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.27.18", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.18", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.20", path = "../swc_css_modules", optional = true }
swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.27.19", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.19", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.21", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.20", path = "../swc_css_prefixer", optional = true }
swc_css_prefixer = { version = "0.153.21", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.11", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" }
2 changes: 1 addition & 1 deletion crates/swc_css_codegen/Cargo.toml
Original file line number Diff line number Diff line change
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.151.18"
version = "0.151.19"

[lib]
bench = false
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_css_compat/Cargo.toml
Original file line number Diff line number Diff line change
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.27.18"
version = "0.27.19"

[lib]
bench = false
Expand All @@ -25,6 +25,6 @@ swc_css_utils = { version = "0.137.11", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" }

[dev-dependencies]
swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" }
swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" }
testing = { version = "0.35.12", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc_css_minifier/Cargo.toml
Original file line number Diff line number Diff line change
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.116.18"
version = "0.116.19"

[lib]
bench = false
Expand All @@ -24,7 +24,7 @@ swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" }
[dev-dependencies]
criterion = "0.5"

swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" }
swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" }
swc_malloc = { version = "0.5.10", path = "../swc_malloc" }
testing = { version = "0.35.12", path = "../testing" }
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_css_modules/Cargo.toml
Original file line number Diff line number Diff line change
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.29.20"
version = "0.29.21"

[lib]
bench = false
Expand All @@ -21,12 +21,12 @@ serde = { version = "1", features = ["derive"] }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.10", path = "../swc_common" }
swc_css_ast = { version = "0.140.11", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" }
swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" }
swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" }

[dev-dependencies]
serde_json = "1"

swc_css_compat = { version = "0.27.18", path = "../swc_css_compat" }
swc_css_compat = { version = "0.27.19", path = "../swc_css_compat" }
testing = { version = "0.35.12", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc_css_prefixer/Cargo.toml
Original file line number Diff line number Diff line change
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.153.20"
version = "0.153.21"

[lib]
bench = false
Expand All @@ -25,6 +25,6 @@ swc_css_utils = { version = "0.137.11", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" }

[dev-dependencies]
swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" }
swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" }
swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" }
testing = { version = "0.35.12", path = "../testing" }
4 changes: 2 additions & 2 deletions crates/swc_html/Cargo.toml
Original file line number Diff line number Diff line change
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.134.85"
version = "0.134.86"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"]
[dependencies]
swc_html_ast = {version = "0.33.10", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.42.14", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.131.84", path = "../swc_html_minifier", optional = true}
swc_html_minifier = {version = "0.131.85", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.39.14", path = "../swc_html_parser"}
swc_html_visit = {version = "0.33.10", path = "../swc_html_visit"}
6 changes: 3 additions & 3 deletions crates/swc_html_minifier/Cargo.toml
Original file line number Diff line number Diff line change
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.131.84"
version = "0.131.85"

[lib]
bench = false
Expand All @@ -24,8 +24,8 @@ swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_cached = { version = "0.3.18", path = "../swc_cached" }
swc_common = { version = "0.33.10", path = "../swc_common" }
swc_css_ast = { version = "0.140.11", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.18", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.18", path = "../swc_css_minifier" }
swc_css_codegen = { version = "0.151.19", path = "../swc_css_codegen" }
swc_css_minifier = { version = "0.116.19", path = "../swc_css_minifier" }
swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" }
swc_ecma_ast = { version = "0.110.12", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "0.146.39", path = "../swc_ecma_codegen", features = [
Expand Down

0 comments on commit a6355c1

Please sign in to comment.