chore: Publish crates

This commit is contained in:
SWC Bot 2023-03-28 08:00:32 +00:00
parent 6f0bf665c2
commit fca18b2c6b
6 changed files with 16 additions and 13 deletions

View File

@ -8,6 +8,9 @@
- **(css/codegen)** Preserve `raw` of numbers (#7131) ([150c2b6](https://github.com/swc-project/swc/commit/150c2b6fbaef976c6ee97438d1b9b7ffe4b210be))
- **(css/compat)** Remove usage of `box_syntax` (#7153) ([6f0bf66](https://github.com/swc-project/swc/commit/6f0bf665c29abaa64c60fb43053f96e465d3e041))
- **(es/react)** Respect `import_source` in new jsx (#7128) ([5d7acfd](https://github.com/swc-project/swc/commit/5d7acfd9cbbb9780879d0d7a046f716572a477f7))

8
Cargo.lock generated
View File

@ -3306,7 +3306,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.72.0"
version = "0.72.1"
dependencies = [
"anyhow",
"binding_macros",
@ -3359,7 +3359,7 @@ dependencies = [
[[package]]
name = "swc_css"
version = "0.151.0"
version = "0.151.1"
dependencies = [
"swc_css_ast",
"swc_css_codegen",
@ -3416,7 +3416,7 @@ dependencies = [
[[package]]
name = "swc_css_compat"
version = "0.22.0"
version = "0.22.1"
dependencies = [
"bitflags",
"once_cell",
@ -3470,7 +3470,7 @@ dependencies = [
[[package]]
name = "swc_css_modules"
version = "0.23.0"
version = "0.23.1"
dependencies = [
"rustc-hash",
"serde",

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.72.0"
version = "0.72.1"
[package.metadata.docs.rs]
features = [
"common_perf",
@ -351,7 +351,7 @@ swc_common = { optional = true, version = "0.30.0", path =
swc_css_ast = { optional = true, version = "0.136.0", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.146.0", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.111.0", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.23.0", path = "../swc_css_modules" }
swc_css_modules = { optional = true, version = "0.23.1", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.145.0", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.148.0", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.133.0", path = "../swc_css_utils/" }
@ -383,7 +383,7 @@ swc_plugin_proxy = { optional = true, version = "0.31.0", path =
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.32.0", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_css_compat = { version = "0.22.0", path = "../swc_css_compat", optional = true }
swc_css_compat = { version = "0.22.1", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.93.0", path = "../swc_plugin_runner", default-features = false }
[build-dependencies]

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.151.0"
version = "0.151.1"
[package.metadata.docs.rs]
all-features = true
@ -24,9 +24,9 @@ prefixer = ["swc_css_prefixer"]
[dependencies]
swc_css_ast = { version = "0.136.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "0.146.0", path = "../swc_css_codegen" }
swc_css_compat = { version = "0.22.0", path = "../swc_css_compat", optional = true }
swc_css_compat = { version = "0.22.1", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.111.0", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.23.0", path = "../swc_css_modules", optional = true }
swc_css_modules = { version = "0.23.1", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.145.0", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.148.0", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.133.0", path = "../swc_css_utils/" }

View File

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

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.23.0"
version = "0.23.1"
[lib]
bench = false
@ -28,5 +28,5 @@ swc_css_visit = { version = "0.135.0", path = "../swc_css_visit" }
[dev-dependencies]
serde_json = "1"
swc_css_compat = { version = "0.22.0", path = "../swc_css_compat" }
swc_css_compat = { version = "0.22.1", path = "../swc_css_compat" }
testing = { version = "0.32.0", path = "../testing" }