diff --git a/CHANGELOG.md b/CHANGELOG.md index 8acce97e417..d9c73014b07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -38,6 +38,9 @@ +- **(build)** Disable LTO for local builds (#3514) ([80ed69d](https://github.com/swc-project/swc/commit/80ed69d67dfae44986c19c04ddff758fee98f8ff)) + + - **(crates)** Use bot account for publishing commits ([c10cbc4](https://github.com/swc-project/swc/commit/c10cbc4ecaaca8f5795de70c8bcf7feee455aaa4)) @@ -55,6 +58,9 @@ - **(css/parser)** Refactor codes related to simple blocks (#3506) ([4e124c7](https://github.com/swc-project/swc/commit/4e124c7bca85d70b6e4836038ea1aaa25b9ea663)) + +- **(css/parser)** Refactor code for error recovery (#3508) ([2d997b3](https://github.com/swc-project/swc/commit/2d997b38066ff01e2e84284ae3a1f79f8df8bb6b)) + ### Testing diff --git a/Cargo.lock b/Cargo.lock index 1c5b92f69be..f74747bf83c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2752,7 +2752,7 @@ dependencies = [ [[package]] name = "swc_css" -version = "0.75.0" +version = "0.75.1" dependencies = [ "swc_css_ast", "swc_css_codegen", @@ -2814,7 +2814,7 @@ dependencies = [ [[package]] name = "swc_css_parser" -version = "0.74.1" +version = "0.74.2" dependencies = [ "bitflags", "lexical", diff --git a/crates/swc_css/Cargo.toml b/crates/swc_css/Cargo.toml index 6d337746c5e..25a4d464db0 100644 --- a/crates/swc_css/Cargo.toml +++ b/crates/swc_css/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css" repository = "https://github.com/swc-project/swc.git" -version = "0.75.0" +version = "0.75.1" [package.metadata.docs.rs] all-features = true @@ -19,6 +19,6 @@ minifier = ["swc_css_minifier"] swc_css_ast = {version = "0.70.0", path = "../swc_css_ast"} swc_css_codegen = {version = "0.73.0", path = "../swc_css_codegen"} swc_css_minifier = {version = "0.37.0", path = "../swc_css_minifier", optional = true} -swc_css_parser = {version = "0.74.0", path = "../swc_css_parser"} +swc_css_parser = {version = "0.74.2", path = "../swc_css_parser"} swc_css_utils = {version = "0.67.0", path = "../swc_css_utils/"} swc_css_visit = {version = "0.69.0", path = "../swc_css_visit"} diff --git a/crates/swc_css_parser/Cargo.toml b/crates/swc_css_parser/Cargo.toml index 6056ebaf2ff..f14acaf3f5f 100644 --- a/crates/swc_css_parser/Cargo.toml +++ b/crates/swc_css_parser/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_css_parser" repository = "https://github.com/swc-project/swc.git" -version = "0.74.1" +version = "0.74.2" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features]