diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c4c617ba77..56a037fd90d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ - **(es/parser)** Emit an error for non-last rest element in an object pattern (#3675) ([6a9d778](https://github.com/swc-project/swc/commit/6a9d77808b8513246592129e8c9e154f686fa8a9)) +### Features + + + +- **(cli)** Support stdin (#3688) ([3cf3b20](https://github.com/swc-project/swc/commit/3cf3b20f15e8ddbb2c32405c71183cfdbbb87835)) + ## [1.2.144] - 2022-02-22 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 343829c5547..48e0247bd1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2737,7 +2737,7 @@ dependencies = [ [[package]] name = "swc_cli" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "atty", diff --git a/crates/swc_cli/Cargo.toml b/crates/swc_cli/Cargo.toml index f7ba21edd96..335105f7709 100644 --- a/crates/swc_cli/Cargo.toml +++ b/crates/swc_cli/Cargo.toml @@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"] license = "Apache-2.0" name = "swc_cli" repository = "https://github.com/swc-project/swc.git" -version = "0.8.0" +version = "0.8.1" [[bin]] name = "swc"