chore: Publish crates

This commit is contained in:
Donny/강동윤 2022-02-04 17:54:47 +09:00
parent 5a806c5b81
commit e5b22cc3d8
5 changed files with 18 additions and 9 deletions

View File

@ -11,6 +11,9 @@
- **(es/compat)** Handle initializer hole in array patterns (#3442) ([3bb2a6c](https://github.com/swc-project/swc/commit/3bb2a6ccca4e78412f80aea4fe6c22d04d345a00))
- **(es/parser)** Fix parsing of decorators (#3449) ([5a806c5](https://github.com/swc-project/swc/commit/5a806c5b817c63b7c4f7730b538831b1cea62711))
- **(es/resolver)** Fix handling of for statements (#3446) ([2af5096](https://github.com/swc-project/swc/commit/2af5096e83229df1e5ccfe62659360c0392ef0ba))
### Features
@ -34,6 +37,12 @@
- **(css/ast)** Refactor types related to `@keyframes` at-rule (#3441) ([5c1b021](https://github.com/swc-project/swc/commit/5c1b02182df9ee2f59b8b83f58b5d0b1ae04af35))
### Testing
- **(es)** Update tsc test suite (#3448) ([8b7c38c](https://github.com/swc-project/swc/commit/8b7c38c80ceeb8fc41ad4c60eb427dab9c06ba6e))
## [1.2.136] - 2022-02-03
### Bug Fixes

6
Cargo.lock generated
View File

@ -2612,7 +2612,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.121.2"
version = "0.121.3"
dependencies = [
"ahash",
"anyhow",
@ -2990,7 +2990,7 @@ dependencies = [
[[package]]
name = "swc_ecma_parser"
version = "0.88.0"
version = "0.88.1"
dependencies = [
"either",
"enum_kind",
@ -3311,7 +3311,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.112.1"
version = "0.112.2"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",

View File

@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc"
repository = "https://github.com/swc-project/swc.git"
version = "0.121.2"
version = "0.121.3"
[lib]
name = "swc"
@ -53,7 +53,7 @@ swc_ecma_ext_transforms = {version = "0.51.0", path = "../swc_ecma_ext_transform
swc_ecma_lints = {version = "0.13.1", path = "../swc_ecma_lints"}
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["lru", "node", "tsc"]}
swc_ecma_minifier = {version = "0.72.0", path = "../swc_ecma_minifier"}
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
swc_ecma_parser = {version = "0.88.1", path = "../swc_ecma_parser"}
swc_ecma_preset_env = {version = "0.88.0", path = "../swc_ecma_preset_env"}
swc_ecma_transforms = {version = "0.115.1", path = "../swc_ecma_transforms", features = [
"compat",
@ -68,7 +68,7 @@ swc_ecma_transforms_compat = {version = "0.69.0", path = "../swc_ecma_transforms
swc_ecma_transforms_optimization = {version = "0.85.0", path = "../swc_ecma_transforms_optimization"}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
swc_ecma_visit = {version = "0.51.1", path = "../swc_ecma_visit"}
swc_ecmascript = {version = "0.112.1", path = "../swc_ecmascript"}
swc_ecmascript = {version = "0.112.2", path = "../swc_ecmascript"}
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
swc_plugin_runner = {version = "0.31.0", path = "../swc_plugin_runner", optional = true}
swc_visit = {version = "0.3.0", path = "../swc_visit"}

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "examples/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_parser"
repository = "https://github.com/swc-project/swc.git"
version = "0.88.0"
version = "0.88.1"
[package.metadata.docs.rs]
all-features = true

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.112.1"
version = "0.112.2"
[package.metadata.docs.rs]
all-features = true
@ -37,7 +37,7 @@ swc_ecma_ast = {version = "0.65.3", path = "../swc_ecma_ast"}
swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen", optional = true}
swc_ecma_dep_graph = {version = "0.59.0", path = "../swc_ecma_dep_graph", optional = true}
swc_ecma_minifier = {version = "0.72.0", path = "../swc_ecma_minifier", optional = true}
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_parser = {version = "0.88.1", path = "../swc_ecma_parser", optional = true, default-features = false}
swc_ecma_preset_env = {version = "0.88.0", path = "../swc_ecma_preset_env", optional = true}
swc_ecma_transforms = {version = "0.115.1", path = "../swc_ecma_transforms", optional = true}
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils", optional = true}