diff --git a/CHANGELOG.md b/CHANGELOG.md index 25bc967ec4a..15297860c56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,12 @@ - **(es/utils)** Introduce `NodeIgnoringSpan` (#7030) ([8bfef35](https://github.com/swc-project/swc/commit/8bfef35c1be5790b32fea253f28961271fe7f619)) +### Testing + + + +- **(es/quote)** Fix doctests (#7038) ([e698a34](https://github.com/swc-project/swc/commit/e698a348162e43b11347d2a6139910e096291f59)) + ## [1.3.38] - 2023-03-06 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 26dc15d1fcd..721d1b26106 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3777,7 +3777,7 @@ dependencies = [ [[package]] name = "swc_ecma_quote" -version = "0.44.4" +version = "0.44.5" dependencies = [ "swc_atoms", "swc_common", @@ -4125,7 +4125,7 @@ dependencies = [ [[package]] name = "swc_ecmascript" -version = "0.219.0" +version = "0.219.1" dependencies = [ "swc_ecma_ast", "swc_ecma_codegen", diff --git a/crates/swc_ecma_quote/Cargo.toml b/crates/swc_ecma_quote/Cargo.toml index c88bd412fe6..86b5709ecac 100644 --- a/crates/swc_ecma_quote/Cargo.toml +++ b/crates/swc_ecma_quote/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecma_quote" repository = "https://github.com/swc-project/swc.git" -version = "0.44.4" +version = "0.44.5" [lib] bench = false diff --git a/crates/swc_ecmascript/Cargo.toml b/crates/swc_ecmascript/Cargo.toml index 1d96d121395..6a725181345 100644 --- a/crates/swc_ecmascript/Cargo.toml +++ b/crates/swc_ecmascript/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "swc_ecmascript" repository = "https://github.com/swc-project/swc.git" -version = "0.219.0" +version = "0.219.1" [package.metadata.docs.rs] all-features = true @@ -45,7 +45,7 @@ swc_ecma_dep_graph = { version = "0.100.4", path = "../swc_ecma_dep_graph", opt swc_ecma_minifier = { version = "0.172.0", path = "../swc_ecma_minifier", optional = true } swc_ecma_parser = { version = "0.128.4", path = "../swc_ecma_parser", optional = true, default-features = false } swc_ecma_preset_env = { version = "0.186.0", path = "../swc_ecma_preset_env", optional = true } -swc_ecma_quote = { version = "0.44.4", path = "../swc_ecma_quote", optional = true } +swc_ecma_quote = { version = "0.44.5", path = "../swc_ecma_quote", optional = true } swc_ecma_transforms = { version = "0.209.0", path = "../swc_ecma_transforms", optional = true } swc_ecma_utils = { version = "0.111.5", path = "../swc_ecma_utils", optional = true } swc_ecma_visit = { version = "0.84.2", path = "../swc_ecma_visit", optional = true }