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 Nov 29, 2022
1 parent e3cbe7e commit 08e1c50
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,9 @@

- **(ci)** Fix publish action for binaries (#6517) ([2ac3201](https://github.com/swc-project/swc/commit/2ac32017bad112956a781b0d003782988655409c))


- **(html/parser)** Fix parsing of cdata (#6534) ([e3cbe7e](https://github.com/swc-project/swc/commit/e3cbe7e9a98149bfc05421a264d4e421fb543f7e))

### Features


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.

8 changes: 4 additions & 4 deletions crates/swc_html/Cargo.toml
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.96.30"
version = "0.96.31"

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

[dependencies]
swc_html_ast = {version = "0.28.7", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.37.14", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.93.30", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.14", path = "../swc_html_parser"}
swc_html_codegen = {version = "0.37.15", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.93.31", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.34.15", path = "../swc_html_parser"}
swc_html_visit = {version = "0.28.7", path = "../swc_html_visit"}
4 changes: 2 additions & 2 deletions crates/swc_html_codegen/Cargo.toml
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.14"
version = "0.37.15"

[lib]
bench = false
Expand All @@ -29,6 +29,6 @@ swc_html_utils = { version = "0.14.17", path = "../swc_html_utils" }
swc_common = { version = "0.29.16", path = "../swc_common", features = [
"sourcemap",
] }
swc_html_parser = { version = "0.34.14", path = "../swc_html_parser" }
swc_html_parser = { version = "0.34.15", path = "../swc_html_parser" }
swc_html_visit = { version = "0.28.7", path = "../swc_html_visit" }
testing = { version = "0.31.17", path = "../testing" }
6 changes: 3 additions & 3 deletions crates/swc_html_minifier/Cargo.toml
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.93.30"
version = "0.93.31"

[lib]
bench = false
Expand All @@ -33,8 +33,8 @@ swc_ecma_parser = { version = "0.122.31", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "0.111.58", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "0.80.21", path = "../swc_ecma_visit" }
swc_html_ast = { version = "0.28.7", path = "../swc_html_ast" }
swc_html_codegen = { version = "0.37.14", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.34.14", path = "../swc_html_parser" }
swc_html_codegen = { version = "0.37.15", path = "../swc_html_codegen" }
swc_html_parser = { version = "0.34.15", path = "../swc_html_parser" }
swc_html_utils = { version = "0.14.17", path = "../swc_html_utils" }
swc_html_visit = { version = "0.28.7", path = "../swc_html_visit" }

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_html_parser/Cargo.toml
Expand Up @@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
license = "Apache-2.0"
name = "swc_html_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.34.14"
version = "0.34.15"

[lib]
bench = false
Expand Down

0 comments on commit 08e1c50

Please sign in to comment.