chore: Publish crates

This commit is contained in:
SWC Bot 2023-11-06 00:54:22 +00:00
parent 02cd7c2608
commit 968345b7f6
6 changed files with 14 additions and 19 deletions

View File

@ -7,6 +7,9 @@
- **(css/modules)** Allow out-of-order class names for `composes` ([#8218](https://github.com/swc-project/swc/issues/8218)) ([aeb9caf](https://github.com/swc-project/swc/commit/aeb9cafd11c56d9dce41372211d90a3edb4d1848))
- **(css/modules)** Fix handling of `:global()` selector ([#8219](https://github.com/swc-project/swc/issues/8219)) ([02cd7c2](https://github.com/swc-project/swc/commit/02cd7c2608758476545aadf62e01f2d74ed486f2))
### Features
@ -1720,12 +1723,4 @@
- **(cargo)** Update `rustc` to `nightly-2023-03-20` ([#7170](https://github.com/swc-project/swc/issues/7170)) ([0259a74](https://github.com/swc-project/swc/commit/0259a7465fc5122cf2f297f962f7f0209f619251))
## [1.3.42] - 2023-03-22
### Bug Fixes
- **(es/minifier)** Don't inline into arrow heads ([#7099](https://github.com/swc-project/swc/issues/7099)) ([610e1bb](https://github.com/swc-project/swc/commit/610e1bb581a04fe9b871dd7afa0cf81ab9ee7fa8))
<!-- generated by git-cliff -->

8
Cargo.lock generated
View File

@ -3795,7 +3795,7 @@ dependencies = [
[[package]]
name = "swc_cli_impl"
version = "0.4.32"
version = "0.4.33"
dependencies = [
"anyhow",
"atty",
@ -3896,7 +3896,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.86.34"
version = "0.86.35"
dependencies = [
"anyhow",
"binding_macros",
@ -3947,7 +3947,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.157.7"
version = "0.157.8"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -4057,7 +4057,7 @@ dependencies = [
[[package]]
name = "swc_css_modules"
version = "0.29.6"
version = "0.29.7"
dependencies = [
"rustc-hash",
"serde",

View File

@ -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.32"
version = "0.4.33"
[features]
default = []
@ -32,7 +32,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"
swc_core = { version = "0.86.34", features = [
swc_core = { version = "0.86.35", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.86.34"
version = "0.86.35"
[package.metadata.docs.rs]
features = [
"allocator_node",
@ -334,7 +334,7 @@ swc_css_ast = { optional = true, version = "0.140.4", path
swc_css_codegen = { optional = true, version = "0.151.6", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.27.6", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.116.6", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.6", path = "../swc_css_modules" }
swc_css_modules = { optional = true, version = "0.29.7", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.150.6", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.153.7", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.4", path = "../swc_css_utils/" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.157.7"
version = "0.157.8"
[package.metadata.docs.rs]
all-features = true
@ -26,7 +26,7 @@ swc_css_ast = { version = "0.140.4", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.151.6", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.27.6", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.6", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.6", path = "../swc_css_modules", optional = true }
swc_css_modules = { version = "0.29.7", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.6", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.7", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.4", path = "../swc_css_utils/" }

View File

@ -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.6"
version = "0.29.7"
[lib]
bench = false