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 Mar 28, 2023
1 parent 6f0bf66 commit fca18b2
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 @@ -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))


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.72.0"
version = "0.72.1"
[package.metadata.docs.rs]
features = [
"common_perf",
Expand Down Expand Up @@ -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/" }
Expand Down Expand Up @@ -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]
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.151.0"
version = "0.151.1"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -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/" }
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.22.0"
version = "0.22.1"

[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.23.0"
version = "0.23.1"

[lib]
bench = false
Expand All @@ -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" }

0 comments on commit fca18b2

Please sign in to comment.