Skip to content

Commit

Permalink
chore: Publish crates with swc_core v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Oct 21, 2024
1 parent f70b842 commit 0708b49
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 28 deletions.
6 changes: 0 additions & 6 deletions .changeset/nervous-hounds-kiss.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/plenty-frogs-live.md

This file was deleted.

6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ swc_common = { version = "1.0.0", features = [
], path = "../swc_common" }
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader", features = [
"node",
"tsc",
] }
swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "1.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "1.0.0", path = "../swc_ecma_transforms", features = [
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ swc_ecma_loader = { version = "1.0.0", path = "../swc_ecma_loader", features = [
"node",
"cache",
] }
swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "1.0.1", path = "../swc_ecma_transforms_proposal" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }

swc_core = { version = "1.0.3", features = [
swc_core = { version = "1.0.4", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ swc_common = { version = "1.0.0", path = "../swc_common", features = [
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
swc_timer = { version = "1.0.0", path = "../swc_timer" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "1.0.3"
version = "1.0.4"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -357,7 +357,7 @@ swc_ecma_ast = { optional = true, version = "1.0.0", path =
swc_ecma_codegen = { optional = true, version = "1.0.0", path = "../swc_ecma_codegen" }
swc_ecma_lints = { optional = true, version = "1.0.0", path = "../swc_ecma_lints" }
swc_ecma_loader = { optional = true, version = "1.0.0", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "1.0.1", path = "../swc_ecma_minifier" }
swc_ecma_minifier = { optional = true, version = "1.0.2", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "1.0.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "1.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "1.0.0", path = "../swc_ecma_quote_macros" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_bugfixes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ version = "1.0.0"
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "1.0.0", path = "../swc_common" }
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_es2015 = { version = "1.0.0", path = "../swc_ecma_compat_es2015" }
swc_ecma_compat_es2015 = { version = "1.0.1", path = "../swc_ecma_compat_es2015" }
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_utils = { version = "1.0.1", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_es2015/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_compat_es2015"
repository = "https://github.com/swc-project/swc.git"
version = "1.0.0"
version = "1.0.1"


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/lists/*.json"]
license = "Apache-2.0"
name = "swc_ecma_minifier"
repository = "https://github.com/swc-project/swc.git"
version = "1.0.1"
version = "1.0.2"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_transforms_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
swc_ecma_compat_bugfixes = { version = "1.0.0", path = "../swc_ecma_compat_bugfixes" }
swc_ecma_compat_common = { version = "1.0.0", path = "../swc_ecma_compat_common" }
swc_ecma_compat_es2015 = { version = "1.0.0", path = "../swc_ecma_compat_es2015" }
swc_ecma_compat_es2015 = { version = "1.0.1", path = "../swc_ecma_compat_es2015" }
swc_ecma_compat_es2016 = { version = "1.0.0", path = "../swc_ecma_compat_es2016" }
swc_ecma_compat_es2017 = { version = "1.0.0", path = "../swc_ecma_compat_es2017" }
swc_ecma_compat_es2018 = { version = "1.0.0", path = "../swc_ecma_compat_es2018" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecmascript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ typescript = ["typescript-parser", "swc_ecma_transforms/typescript"]
[dependencies]
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen", optional = true }
swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier", optional = true }
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "1.0.0", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "1.0.0", path = "../swc_ecma_quote", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_html_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "1.0.0", path = "../swc_ecma_codegen", features = [
"serde-impl",
] }
swc_ecma_minifier = { version = "1.0.1", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "1.0.2", path = "../swc_ecma_minifier", features = [
"extra-serde",
] }
swc_ecma_parser = { version = "1.0.1", path = "../swc_ecma_parser" }
Expand Down

0 comments on commit 0708b49

Please sign in to comment.