Skip to content

Commit 3117585

Browse files
committed
chore: Publish crates
1 parent 282232c commit 3117585

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919

2020
- **(es/parser)** Fix span of `ComputedPropName` (#3234) ([105cbc2](https://github.com/swc-project/swc/commit/105cbc2017e20a7c6a5d7dfdd7a9a4c396032be9))
2121

22+
23+
- **(es/typescript)** Remove rogue `println` (#3244) ([282232c](https://github.com/swc-project/swc/commit/282232c9958309e70a18799449802ef5d7e88123))
24+
2225
### Features
2326

2427

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/swc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
99
license = "Apache-2.0"
1010
name = "swc"
1111
repository = "https://github.com/swc-project/swc.git"
12-
version = "0.113.0"
12+
version = "0.113.1"
1313

1414
[lib]
1515
name = "swc"
@@ -62,7 +62,7 @@ swc_ecma_loader = {version = "0.27.0", path = "../swc_ecma_loader", features = [
6262
swc_ecma_minifier = {version = "0.68.0", path = "../swc_ecma_minifier"}
6363
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser"}
6464
swc_ecma_preset_env = {version = "0.84.0", path = "../swc_ecma_preset_env"}
65-
swc_ecma_transforms = {version = "0.111.0", path = "../swc_ecma_transforms", features = [
65+
swc_ecma_transforms = {version = "0.111.1", path = "../swc_ecma_transforms", features = [
6666
"compat",
6767
"module",
6868
"optimization",
@@ -75,7 +75,7 @@ swc_ecma_transforms_compat = {version = "0.67.0", path = "../swc_ecma_transforms
7575
swc_ecma_transforms_optimization = {version = "0.81.0", path = "../swc_ecma_transforms_optimization"}
7676
swc_ecma_utils = {version = "0.63.0", path = "../swc_ecma_utils"}
7777
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
78-
swc_ecmascript = {version = "0.108.0", path = "../swc_ecmascript"}
78+
swc_ecmascript = {version = "0.108.1", path = "../swc_ecmascript"}
7979
swc_node_comments = {version = "0.4.0", path = "../swc_node_comments"}
8080
swc_plugin_runner = {version = "0.30.0", path = "../swc_plugin_runner", optional = true}
8181
swc_visit = {version = "0.3.0", path = "../swc_visit"}

crates/swc_ecma_transforms/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_ecma_transforms"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.111.0"
9+
version = "0.111.1"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true
@@ -33,7 +33,7 @@ swc_ecma_transforms_module = {version = "0.73.0", path = "../swc_ecma_transforms
3333
swc_ecma_transforms_optimization = {version = "0.81.0", path = "../swc_ecma_transforms_optimization", optional = true}
3434
swc_ecma_transforms_proposal = {version = "0.73.0", path = "../swc_ecma_transforms_proposal", optional = true}
3535
swc_ecma_transforms_react = {version = "0.75.0", path = "../swc_ecma_transforms_react", optional = true}
36-
swc_ecma_transforms_typescript = {version = "0.77.0", path = "../swc_ecma_transforms_typescript", optional = true}
36+
swc_ecma_transforms_typescript = {version = "0.77.1", path = "../swc_ecma_transforms_typescript", optional = true}
3737
swc_ecma_utils = {version = "0.63.0", path = "../swc_ecma_utils"}
3838
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
3939
unicode-xid = "0.2"

crates/swc_ecma_transforms_typescript/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_ecma_transforms_typescript"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.77.0"
9+
version = "0.77.1"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]

crates/swc_ecmascript/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_ecmascript"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.108.0"
9+
version = "0.108.1"
1010

1111
[package.metadata.docs.rs]
1212
all-features = true
@@ -39,7 +39,7 @@ swc_ecma_dep_graph = {version = "0.58.0", path = "../swc_ecma_dep_graph", option
3939
swc_ecma_minifier = {version = "0.68.0", path = "../swc_ecma_minifier", optional = true}
4040
swc_ecma_parser = {version = "0.87.0", path = "../swc_ecma_parser", optional = true, default-features = false}
4141
swc_ecma_preset_env = {version = "0.84.0", path = "../swc_ecma_preset_env", optional = true}
42-
swc_ecma_transforms = {version = "0.111.0", path = "../swc_ecma_transforms", optional = true}
42+
swc_ecma_transforms = {version = "0.111.1", path = "../swc_ecma_transforms", optional = true}
4343
swc_ecma_utils = {version = "0.63.0", path = "../swc_ecma_utils", optional = true}
4444
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit", optional = true}
4545

0 commit comments

Comments
 (0)