chore: Publish crates

This commit is contained in:
SWC Bot 2022-04-23 04:29:04 +00:00
parent cf3be649bb
commit a6ca119c3f
8 changed files with 33 additions and 27 deletions

View File

@ -1,6 +1,12 @@
# Changelog # Changelog
## [unreleased] ## [unreleased]
### Bug Fixes
- **(html/parser)** Parse foreign attributes (#4400) ([cf3be64](https://github.com/swc-project/swc/commit/cf3be649bb327feda8bce4e7ab7eca92d248c2da))
### Features ### Features

12
Cargo.lock generated
View File

@ -3752,7 +3752,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html" name = "swc_html"
version = "0.4.1" version = "0.5.0"
dependencies = [ dependencies = [
"swc_html_ast", "swc_html_ast",
"swc_html_codegen", "swc_html_codegen",
@ -3763,7 +3763,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_ast" name = "swc_html_ast"
version = "0.4.0" version = "0.5.0"
dependencies = [ dependencies = [
"is-macro", "is-macro",
"serde", "serde",
@ -3774,7 +3774,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_codegen" name = "swc_html_codegen"
version = "0.4.0" version = "0.5.0"
dependencies = [ dependencies = [
"auto_impl", "auto_impl",
"bitflags", "bitflags",
@ -3800,7 +3800,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_minifier" name = "swc_html_minifier"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",
@ -3813,7 +3813,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_parser" name = "swc_html_parser"
version = "0.4.0" version = "0.5.0"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"lexical", "lexical",
@ -3829,7 +3829,7 @@ dependencies = [
[[package]] [[package]]
name = "swc_html_visit" name = "swc_html_visit"
version = "0.4.0" version = "0.5.0"
dependencies = [ dependencies = [
"swc_atoms", "swc_atoms",
"swc_common", "swc_common",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html" name = "swc_html"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.4.1" version = "0.5.0"
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true
@ -19,8 +19,8 @@ bench = false
minifier = ["swc_html_minifier"] minifier = ["swc_html_minifier"]
[dependencies] [dependencies]
swc_html_ast = {version = "0.4.0", path = "../swc_html_ast"} swc_html_ast = {version = "0.5.0", path = "../swc_html_ast"}
swc_html_codegen = {version = "0.4.0", path = "../swc_html_codegen"} swc_html_codegen = {version = "0.5.0", path = "../swc_html_codegen"}
swc_html_minifier = {version = "0.1.0", path = "../swc_html_minifier", optional = true} swc_html_minifier = {version = "0.2.0", path = "../swc_html_minifier", optional = true}
swc_html_parser = {version = "0.4.0", path = "../swc_html_parser"} swc_html_parser = {version = "0.5.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.4.0", path = "../swc_html_visit"} swc_html_visit = {version = "0.5.0", path = "../swc_html_visit"}

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html_ast" name = "swc_html_ast"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.4.0" version = "0.5.0"
[lib] [lib]
bench = false bench = false

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html_codegen" name = "swc_html_codegen"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.4.0" version = "0.5.0"
[lib] [lib]
bench = false bench = false
@ -17,13 +17,13 @@ auto_impl = "0.5.0"
bitflags = "1.3.2" bitflags = "1.3.2"
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = { version = "0.17.23", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_html_ast = {version = "0.4.0", path = "../swc_html_ast"} swc_html_ast = {version = "0.5.0", path = "../swc_html_ast"}
swc_html_codegen_macros = {version = "0.1.0", path = "../swc_html_codegen_macros"} swc_html_codegen_macros = {version = "0.1.0", path = "../swc_html_codegen_macros"}
[dev-dependencies] [dev-dependencies]
swc_common = { version = "0.17.23", path = "../swc_common", features = [ swc_common = { version = "0.17.23", path = "../swc_common", features = [
"sourcemap", "sourcemap",
]} ]}
swc_html_parser = {version = "0.4.0", path = "../swc_html_parser"} swc_html_parser = {version = "0.5.0", path = "../swc_html_parser"}
swc_html_visit = {version = "0.4.0", path = "../swc_html_visit"} swc_html_visit = {version = "0.5.0", path = "../swc_html_visit"}
testing = {version = "0.19.0", path = "../testing"} testing = {version = "0.19.0", path = "../testing"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html_minifier" name = "swc_html_minifier"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.1.0" version = "0.2.0"
[lib] [lib]
bench = false bench = false
@ -15,10 +15,10 @@ bench = false
[dependencies] [dependencies]
swc_atoms = {version = "0.2.9", path = "../swc_atoms"} swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
swc_common = { version = "0.17.23", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_html_ast = {version = "0.4.0", path = "../swc_html_ast"} swc_html_ast = {version = "0.5.0", path = "../swc_html_ast"}
swc_html_visit = {version = "0.4.0", path = "../swc_html_visit"} swc_html_visit = {version = "0.5.0", path = "../swc_html_visit"}
[dev-dependencies] [dev-dependencies]
swc_html_codegen = {version = "0.4.0", path = "../swc_html_codegen"} swc_html_codegen = {version = "0.5.0", path = "../swc_html_codegen"}
swc_html_parser = {version = "0.4.0", path = "../swc_html_parser"} swc_html_parser = {version = "0.5.0", path = "../swc_html_parser"}
testing = {version = "0.19.0", path = "../testing"} testing = {version = "0.19.0", path = "../testing"}

View File

@ -10,7 +10,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json"]
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html_parser" name = "swc_html_parser"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.4.0" version = "0.5.0"
[lib] [lib]
bench = false bench = false
@ -26,10 +26,10 @@ serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61" serde_json = "1.0.61"
swc_atoms = { version = "0.2.7", path = "../swc_atoms" } swc_atoms = { version = "0.2.7", path = "../swc_atoms" }
swc_common = { version = "0.17.23", path = "../swc_common" } swc_common = { version = "0.17.23", path = "../swc_common" }
swc_html_ast = { version = "0.4.0", path = "../swc_html_ast" } swc_html_ast = { version = "0.5.0", path = "../swc_html_ast" }
[dev-dependencies] [dev-dependencies]
serde = "1.0.127" serde = "1.0.127"
serde_json = "1.0.66" serde_json = "1.0.66"
swc_html_visit = { version = "0.4.0", path = "../swc_html_visit" } swc_html_visit = { version = "0.5.0", path = "../swc_html_visit" }
testing = { version = "0.19.0", path = "../testing" } testing = { version = "0.19.0", path = "../testing" }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0" license = "Apache-2.0"
name = "swc_html_visit" name = "swc_html_visit"
repository = "https://github.com/swc-project/swc.git" repository = "https://github.com/swc-project/swc.git"
version = "0.4.0" version = "0.5.0"
[lib] [lib]
bench = false bench = false
@ -14,5 +14,5 @@ bench = false
[dependencies] [dependencies]
swc_atoms = {version = "0.2.7", path = "../swc_atoms"} swc_atoms = {version = "0.2.7", path = "../swc_atoms"}
swc_common = { version = "0.17.23", path = "../swc_common"} swc_common = { version = "0.17.23", path = "../swc_common"}
swc_html_ast = {version = "0.4.0", path = "../swc_html_ast"} swc_html_ast = {version = "0.5.0", path = "../swc_html_ast"}
swc_visit = {version = "0.3.0", path = "../swc_visit"} swc_visit = {version = "0.3.0", path = "../swc_visit"}