diff --git a/CHANGELOG.md b/CHANGELOG.md index bbf340dbf22..4d94599c6a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ +- **(common)** Add `Atom` type (#4945) ([4ada9c7](https://github.com/swc-project/swc/commit/4ada9c7e05d1d61e061bf6af5830d10580d671eb)) + + - **(css/parser)** Improve performance of lexer (#4921) ([327969d](https://github.com/swc-project/swc/commit/327969d0d96159ed45a45a92e943d9d426de303c)) ## [1.2.199] - 2022-06-11 diff --git a/Cargo.lock b/Cargo.lock index 91c3a1f8641..99cc8bd2155 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2992,7 +2992,7 @@ dependencies = [ [[package]] name = "swc_atoms" -version = "0.2.11" +version = "0.2.12" dependencies = [ "once_cell", "rkyv", diff --git a/crates/swc_atoms/Cargo.toml b/crates/swc_atoms/Cargo.toml index 53d58bd6f55..d75becd73ad 100644 --- a/crates/swc_atoms/Cargo.toml +++ b/crates/swc_atoms/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_atoms" repository = "https://github.com/swc-project/swc.git" -version = "0.2.11" +version = "0.2.12" [lib] bench = false