diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a257ed7738b..9c2e46c99321 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -446,9 +446,6 @@ - **(es/module)** Read link if an import is resolved as symlink ([#8297](https://github.com/swc-project/swc/issues/8297)) ([7dfdc12](https://github.com/swc-project/swc/commit/7dfdc1221890d373d2e6caf52bc8dee8c20765ca)) -- **(es/parser)** Fix handling of `in` and `out` of typescript ([#7308](https://github.com/swc-project/swc/issues/7308)) ([6f81cb9](https://github.com/swc-project/swc/commit/6f81cb9c32219cd8e51a97c924e0b272fc25a0c1)) - - - **(es/parser)** Parse decorators after `export` ([#7340](https://github.com/swc-project/swc/issues/7340)) ([985f0ca](https://github.com/swc-project/swc/commit/985f0cad06b9de5f9e98bed3ad62769e0f3c7528)) @@ -1049,6 +1046,9 @@ - **(es/typescript)** Reimplement TypeScript pass ([#7202](https://github.com/swc-project/swc/issues/7202)) ([9c9a538](https://github.com/swc-project/swc/commit/9c9a538f23cb2bcd2f46e156babf64c7a81db245)) +- **(html/minifier)** Support stable rust ([#8380](https://github.com/swc-project/swc/issues/8380)) ([77145ce](https://github.com/swc-project/swc/commit/77145ce47ab66a1dbcbd614fc66886bfbec5f4f7)) + + - **(plugin/runner)** Refine cache location ([#7346](https://github.com/swc-project/swc/issues/7346)) ([91a3fbe](https://github.com/swc-project/swc/commit/91a3fbe460799ed604c2b43b4facaed60cfd6c87)) diff --git a/Cargo.lock b/Cargo.lock index e68ca273861d..3d8ce3fa710a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5095,7 +5095,7 @@ dependencies = [ [[package]] name = "swc_html" -version = "0.134.84" +version = "0.134.85" dependencies = [ "swc_html_ast", "swc_html_codegen", @@ -5146,7 +5146,7 @@ dependencies = [ [[package]] name = "swc_html_minifier" -version = "0.131.83" +version = "0.131.84" dependencies = [ "criterion", "once_cell", diff --git a/crates/swc_html/Cargo.toml b/crates/swc_html/Cargo.toml index f9dea20680ed..b9f1ea14a995 100644 --- a/crates/swc_html/Cargo.toml +++ b/crates/swc_html/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_html" repository = "https://github.com/swc-project/swc.git" -version = "0.134.84" +version = "0.134.85" [package.metadata.docs.rs] all-features = true @@ -21,6 +21,6 @@ minifier = ["swc_html_minifier"] [dependencies] swc_html_ast = {version = "0.33.10", path = "../swc_html_ast"} swc_html_codegen = {version = "0.42.14", path = "../swc_html_codegen"} -swc_html_minifier = {version = "0.131.83", path = "../swc_html_minifier", optional = true} +swc_html_minifier = {version = "0.131.84", path = "../swc_html_minifier", optional = true} swc_html_parser = {version = "0.39.14", path = "../swc_html_parser"} swc_html_visit = {version = "0.33.10", path = "../swc_html_visit"} diff --git a/crates/swc_html_minifier/Cargo.toml b/crates/swc_html_minifier/Cargo.toml index 71bdf6738c14..4d9270b504c8 100644 --- a/crates/swc_html_minifier/Cargo.toml +++ b/crates/swc_html_minifier/Cargo.toml @@ -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.131.83" +version = "0.131.84" [lib] bench = false