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 12, 2022
1 parent bfdafdb commit f6cd0dc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@

- **(ci)** Adjust upload of cli binaries (#6624) ([81b352d](https://github.com/swc-project/swc/commit/81b352d9667c8874b1d9d87a92cca5b8d4c9fd41))

### Performance



- **(html/codegen)** Reduce allocations (#6622) ([bfdafdb](https://github.com/swc-project/swc/commit/bfdafdbb898aa3429172f71c8d018689133e4fd6))

## [1.3.22] - 2022-12-09

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 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_html/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_html"
repository = "https://github.com/swc-project/swc.git"
version = "0.100.3"
version = "0.100.4"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -20,7 +20,7 @@ minifier = ["swc_html_minifier"]

[dependencies]
swc_html_ast = {version = "0.28.12", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.22", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.97.3", path = "../swc_html_minifier", optional = true}
swc_html_codegen = {version = "0.37.23", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.97.4", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.22", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.12", path = "../swc_html_visit"}
2 changes: 1 addition & 1 deletion crates/swc_html_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_html_codegen"
repository = "https://github.com/swc-project/swc.git"
version = "0.37.22"
version = "0.37.23"

[lib]
bench = false
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_html_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "0.97.3"
version = "0.97.4"

[lib]
bench = false
Expand All @@ -33,7 +33,7 @@ swc_ecma_parser = { version = "0.123.7", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.112.10", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.81.4", path = "../swc_ecma_visit" }
swc_html_ast = { version = "0.28.12", path = "../swc_html_ast" }
swc_html_codegen = { version = "0.37.22", path = "../swc_html_codegen" }
swc_html_codegen = { version = "0.37.23", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.34.22", path = "../swc_html_parser" }
swc_html_utils = { version = "0.14.21", path = "../swc_html_utils" }
swc_html_visit = { version = "0.28.12", path = "../swc_html_visit" }
Expand Down

0 comments on commit f6cd0dc

Please sign in to comment.