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 7, 2023
1 parent bc1e328 commit b9f3a08
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
- **(ci)** Set `tag` for wasm publish actions ([#8200](https://github.com/swc-project/swc/issues/8200)) ([8db80b8](https://github.com/swc-project/swc/commit/8db80b8c28bba5a423194dd19ddf05ccd94eb650))


- **(common)** Workaround the `Arc` and `rkyv` issue ([#7321](https://github.com/swc-project/swc/issues/7321)) ([577f81e](https://github.com/swc-project/swc/commit/577f81ec405f4f3a3e58e3f97c07d3720dd80912))


- **(common)** Disable `tracing/release_max_level_info` ([#7401](https://github.com/swc-project/swc/issues/7401)) ([95291f2](https://github.com/swc-project/swc/commit/95291f2c5daaf039623b4db4668a91104c0c0124))


Expand Down Expand Up @@ -956,6 +953,9 @@
- **(css/codegen)** Support stable rust ([#8379](https://github.com/swc-project/swc/issues/8379)) ([7cddbc6](https://github.com/swc-project/swc/commit/7cddbc618a189446d7f781a5c11f6f02bf7504e3))


- **(css/compat)** Support stable rust ([#8386](https://github.com/swc-project/swc/issues/8386)) ([bc1e328](https://github.com/swc-project/swc/commit/bc1e32829deb4ebe91ebea5ce08b5c6bc95292a3))


- **(css/minifier)** Support stable rust ([#8389](https://github.com/swc-project/swc/issues/8389)) ([305e72e](https://github.com/swc-project/swc/commit/305e72e67297fabefb5124922e52b15522496467))


Expand Down
10 changes: 5 additions & 5 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.93"
version = "0.4.94"

[[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.95", features = [
swc_core = { version = "0.86.96", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
6 changes: 3 additions & 3 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.95"
version = "0.86.96"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -332,9 +332,9 @@ swc_cached = { optional = true, version = "0.3.18", path =
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.19", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "0.27.19", path = "../swc_css_compat" }
swc_css_compat = { optional = true, version = "0.27.20", path = "../swc_css_compat" }
swc_css_minifier = { optional = true, version = "0.116.20", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.21", path = "../swc_css_modules" }
swc_css_modules = { optional = true, version = "0.29.22", 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.21", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.11", path = "../swc_css_utils/" }
Expand Down
6 changes: 3 additions & 3 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.24"
version = "0.157.25"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -24,9 +24,9 @@ prefixer = ["swc_css_prefixer"]
[dependencies]
swc_css_ast = { version = "0.140.11", path = "../swc_css_ast" }
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_compat = { version = "0.27.20", path = "../swc_css_compat", optional = true }
swc_css_minifier = { version = "0.116.20", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.21", path = "../swc_css_modules", optional = true }
swc_css_modules = { version = "0.29.22", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.18", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.21", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.11", path = "../swc_css_utils/" }
Expand Down
2 changes: 1 addition & 1 deletion 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.19"
version = "0.27.20"

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

[lib]
bench = false
Expand All @@ -28,5 +28,5 @@ swc_css_visit = { version = "0.139.11", path = "../swc_css_visit" }
[dev-dependencies]
serde_json = "1"

swc_css_compat = { version = "0.27.19", path = "../swc_css_compat" }
swc_css_compat = { version = "0.27.20", path = "../swc_css_compat" }
testing = { version = "0.35.12", path = "../testing" }

0 comments on commit b9f3a08

Please sign in to comment.