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 13, 2022
1 parent a5f7b4b commit 754c484
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -35,6 +35,9 @@
- **(css/compat)** Add `Compiler` (#6626) ([b3bbd74](https://github.com/swc-project/swc/commit/b3bbd742bf5a3bc51105e16cf6260b63ef9b124a))


- **(css/compat)** Support custom media queries (#6625) ([a5f7b4b](https://github.com/swc-project/swc/commit/a5f7b4b8aa48d3d920dcebf72d766b6e3f458fb7))


- **(css/minifier)** Support `to` and `from` with `initial` (#6613) ([cb49fa6](https://github.com/swc-project/swc/commit/cb49fa6f1ddf2ae37262769c538ef1a51adc404c))


Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 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.48.6"
version = "0.48.7"
[package.metadata.docs.rs]
features = [
"common_perf",
Expand Down Expand Up @@ -349,7 +349,7 @@ swc_common = { optional = true, version = "0.29.21", path
swc_css_ast = { optional = true, version = "0.131.1", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "0.141.1", path = "../swc_css_codegen" }
swc_css_minifier = { optional = true, version = "0.106.4", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.17.2", path = "../swc_css_modules" }
swc_css_modules = { optional = true, version = "0.17.3", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.140.1", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.142.1", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.128.1", path = "../swc_css_utils/" }
Expand Down Expand Up @@ -381,7 +381,7 @@ swc_plugin_proxy = { optional = true, version = "0.23.5", path =
swc_trace_macro = { optional = true, version = "0.1.2", path = "../swc_trace_macro" }
testing = { optional = true, version = "0.31.22", path = "../testing" }
# TODO: eventually swc_plugin_runner needs to remove default features
swc_css_compat = { version = "0.16.2", path = "../swc_css_compat", optional = true }
swc_css_compat = { version = "0.16.3", path = "../swc_css_compat", optional = true }
swc_plugin_runner = { optional = true, version = "0.81.1", path = "../swc_plugin_runner", default-features = false }

[build-dependencies]
Expand Down
6 changes: 3 additions & 3 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.144.5"
version = "0.144.6"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -24,9 +24,9 @@ prefixer = ["swc_css_prefixer"]
[dependencies]
swc_css_ast = {version = "0.131.1", path = "../swc_css_ast"}
swc_css_codegen = {version = "0.141.1", path = "../swc_css_codegen"}
swc_css_compat = {version = "0.16.2", path = "../swc_css_compat", optional = true}
swc_css_compat = {version = "0.16.3", path = "../swc_css_compat", optional = true}
swc_css_minifier = {version = "0.106.4", path = "../swc_css_minifier", optional = true}
swc_css_modules = {version = "0.17.2", path = "../swc_css_modules", optional = true}
swc_css_modules = {version = "0.17.3", path = "../swc_css_modules", optional = true}
swc_css_parser = {version = "0.140.1", path = "../swc_css_parser"}
swc_css_prefixer = {version = "0.142.1", path = "../swc_css_prefixer", optional = true}
swc_css_utils = {version = "0.128.1", path = "../swc_css_utils/"}
Expand Down
2 changes: 1 addition & 1 deletion 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.16.2"
version = "0.16.3"

[lib]
bench = false
Expand Down
4 changes: 2 additions & 2 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.17.2"
version = "0.17.3"

[lib]
bench = false
Expand All @@ -26,5 +26,5 @@ swc_css_visit = {version = "0.130.1", path = "../swc_css_visit"}

[dev-dependencies]
serde_json = "1"
swc_css_compat = {version = "0.16.2", path = "../swc_css_compat"}
swc_css_compat = {version = "0.16.3", path = "../swc_css_compat"}
testing = {version = "0.31.22", path = "../testing"}

0 comments on commit 754c484

Please sign in to comment.