chore: Publish crates

This commit is contained in:
SWC Bot 2023-03-09 04:13:27 +00:00
parent e698a34816
commit fd2619ca24
4 changed files with 11 additions and 5 deletions

View File

@ -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

4
Cargo.lock generated
View File

@ -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",

View File

@ -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

View File

@ -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 }