mirror of
https://github.com/swc-project/swc.git
synced 2024-11-24 02:06:08 +03:00
chore: Publish crates
This commit is contained in:
parent
c9adf03338
commit
ba187c3c6a
@ -5,6 +5,9 @@
|
||||
|
||||
|
||||
|
||||
- **(es)** Handle import assertions correctly (#3113) ([c9adf03](https://github.com/swc-project/swc/commit/c9adf0333811b2830fe3f3c06d6fd9706f7bb9ae))
|
||||
|
||||
|
||||
- **(es/compat)** Fix handling of hoisted functions in regenerator (#3119) ([ac78a52](https://github.com/swc-project/swc/commit/ac78a527ebba3e8df2342e65b4fd5c2d36240ff0))
|
||||
|
||||
|
||||
@ -28,6 +31,12 @@
|
||||
|
||||
- **(ci)** Reduce CI time (#3128) ([61cd7da](https://github.com/swc-project/swc/commit/61cd7da265bd775605a0e48346f70b41adf9a225))
|
||||
|
||||
### Security
|
||||
|
||||
|
||||
|
||||
- **(repo)** Configure `cargo-crev` (#3124) ([cec325b](https://github.com/swc-project/swc/commit/cec325be6329bbdc175d7850443de8aabfcf31d6))
|
||||
|
||||
## [1.2.123] - 2021-12-26
|
||||
|
||||
### Bug Fixes
|
||||
|
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -2547,7 +2547,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "0.99.7"
|
||||
version = "0.100.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -2802,7 +2802,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_codegen"
|
||||
version = "0.84.0"
|
||||
version = "0.84.1"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"memchr",
|
||||
@ -3164,7 +3164,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_ecma_transforms_proposal"
|
||||
version = "0.65.1"
|
||||
version = "0.65.2"
|
||||
dependencies = [
|
||||
"either",
|
||||
"serde",
|
||||
@ -3323,7 +3323,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_estree_compat"
|
||||
version = "0.17.0"
|
||||
version = "0.18.0"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
@ -3537,7 +3537,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_webpack_ast"
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"rayon",
|
||||
|
@ -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.99.7"
|
||||
version = "0.100.0"
|
||||
|
||||
[lib]
|
||||
name = "swc"
|
||||
|
@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_codegen"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.84.0"
|
||||
version = "0.84.1"
|
||||
|
||||
[dependencies]
|
||||
bitflags = "1"
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_ecma_transforms_proposal"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.65.1"
|
||||
version = "0.65.2"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
|
@ -6,7 +6,7 @@ edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_estree_compat"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.17.0"
|
||||
version = "0.18.0"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
@ -29,7 +29,7 @@ swc_node_comments = {version = "0.2.0", path = "../swc_node_comments/"}
|
||||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "0.7.1"
|
||||
swc = {version = "0.99.0", path = "../swc"}
|
||||
swc = {version = "0.100.0", path = "../swc"}
|
||||
swc_ecma_ast = {version = "0.60.0", path = "../swc_ecma_ast"}
|
||||
swc_ecma_parser = {version = "0.82.0", path = "../swc_ecma_parser"}
|
||||
swc_ecma_transforms = {version = "0.103.0", path = "../swc_ecma_transforms/"}
|
||||
|
@ -5,7 +5,7 @@ edition = "2018"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_webpack_ast"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "0.15.0"
|
||||
version = "0.16.0"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
@ -22,7 +22,7 @@ swc_ecma_transforms_base = {version = "0.49.0", path = "../swc_ecma_transforms_b
|
||||
swc_ecma_utils = {version = "0.56.0", path = "../swc_ecma_utils"}
|
||||
swc_ecma_visit = {version = "0.46.0", path = "../swc_ecma_visit"}
|
||||
swc_estree_ast = {version = "0.5.0", path = "../swc_estree_ast"}
|
||||
swc_estree_compat = {version = "0.17.0", path = "../swc_estree_compat"}
|
||||
swc_estree_compat = {version = "0.18.0", path = "../swc_estree_compat"}
|
||||
swc_timer = {version = "0.2.0", path = "../swc_timer"}
|
||||
tracing = "0.1.29"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user