chore: Publish crates

This commit is contained in:
SWC Bot 2023-10-12 04:06:44 +00:00
parent 95eb147742
commit 04932acc02
10 changed files with 32 additions and 32 deletions

View File

@ -10,6 +10,12 @@
- **(xtask)** Bump version correctly ([11f31da](https://github.com/swc-project/swc/commit/11f31da3862399d1998fd788f597a9dcdeaf6858))
### Refactor
- **(es/preset-env)** Rename parameter to avoid confusion ([#8106](https://github.com/swc-project/swc/issues/8106)) ([95eb147](https://github.com/swc-project/swc/commit/95eb147742ea1aa207845807a306847afc859702))
## [1.3.93-nightly-20231012.1] - 2023-10-12
### Bug Fixes
@ -1967,10 +1973,4 @@ Full refactor of the "calc" simplification to be more compliant with the spec. (
- **(ci)** Fix CI ([#7014](https://github.com/swc-project/swc/issues/7014)) ([a431a3a](https://github.com/swc-project/swc/commit/a431a3a204faebd283cb7db8359b048d9fcc9a87))
### Refactor
- **(es/parser)** Make lexer not generic over `Input` ([#6993](https://github.com/swc-project/swc/issues/6993)) ([367ac82](https://github.com/swc-project/swc/commit/367ac825f6bfab65cf8bcb21e68500daef8ad177))
<!-- generated by git-cliff -->

16
Cargo.lock generated
View File

@ -283,7 +283,7 @@ dependencies = [
[[package]]
name = "binding_macros"
version = "0.59.5"
version = "0.59.6"
dependencies = [
"anyhow",
"console_error_panic_hook",
@ -3668,7 +3668,7 @@ dependencies = [
[[package]]
name = "swc"
version = "0.268.5"
version = "0.268.6"
dependencies = [
"ansi_term",
"anyhow",
@ -3794,7 +3794,7 @@ dependencies = [
[[package]]
name = "swc_cli_impl"
version = "0.3.5"
version = "0.3.6"
dependencies = [
"anyhow",
"atty",
@ -3895,7 +3895,7 @@ dependencies = [
[[package]]
name = "swc_core"
version = "0.85.5"
version = "0.85.6"
dependencies = [
"anyhow",
"binding_macros",
@ -4319,7 +4319,7 @@ dependencies = [
[[package]]
name = "swc_ecma_preset_env"
version = "0.202.5"
version = "0.202.6"
dependencies = [
"anyhow",
"criterion",
@ -4692,7 +4692,7 @@ dependencies = [
[[package]]
name = "swc_ecmascript"
version = "0.235.6"
version = "0.235.7"
dependencies = [
"swc_ecma_ast",
"swc_ecma_codegen",
@ -4740,7 +4740,7 @@ dependencies = [
[[package]]
name = "swc_estree_compat"
version = "0.193.5"
version = "0.193.6"
dependencies = [
"ahash 0.8.3",
"anyhow",
@ -4925,7 +4925,7 @@ dependencies = [
[[package]]
name = "swc_node_bundler"
version = "0.57.5"
version = "0.57.6"
dependencies = [
"anyhow",
"dashmap",

View File

@ -5,7 +5,7 @@ edition = "2021"
license = "Apache-2.0"
name = "binding_macros"
repository = "https://github.com/swc-project/swc.git"
version = "0.59.5"
version = "0.59.6"
[lib]
bench = false
@ -33,7 +33,7 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "0.268.5", path = "../swc" }
swc = { optional = true, version = "0.268.6", path = "../swc" }
swc_common = { optional = true, version = "0.33.0", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "0.110.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "0.225.5", path = "../swc_ecma_transforms" }

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.268.5"
version = "0.268.6"
[lib]
bench = false
@ -86,7 +86,7 @@ swc_ecma_loader = { version = "0.45.0", path = "../swc_ecma_loader", features =
] }
swc_ecma_minifier = { version = "0.188.6", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "0.141.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "0.202.5", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { version = "0.202.6", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "0.225.5", path = "../swc_ecma_transforms", features = [
"compat",
"module",

View File

@ -6,7 +6,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_cli_impl"
repository = "https://github.com/swc-project/swc.git"
version = "0.3.5"
version = "0.3.6"
[features]
default = []
@ -32,7 +32,7 @@ tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
walkdir = "2"
swc_core = { version = "0.85.5", features = [
swc_core = { version = "0.85.6", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_core"
repository = "https://github.com/swc-project/swc.git"
version = "0.85.5"
version = "0.85.6"
[package.metadata.docs.rs]
features = [
"allocator_node",
@ -324,8 +324,8 @@ __visit = ["__ecma", "swc_ecma_visit"]
once_cell = { optional = true, version = "1.18.0" }
# swc_* dependencies
binding_macros = { optional = true, version = "0.59.5", path = "../binding_macros" }
swc = { optional = true, version = "0.268.5", path = "../swc" }
binding_macros = { optional = true, version = "0.59.6", path = "../binding_macros" }
swc = { optional = true, version = "0.268.6", path = "../swc" }
swc_atoms = { optional = true, version = "0.6.0", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "0.221.6", path = "../swc_bundler" }
swc_cached = { optional = true, version = "0.3.17", path = "../swc_cached" }
@ -344,7 +344,7 @@ swc_ecma_codegen = { optional = true, version = "0.146.1", path
swc_ecma_loader = { optional = true, version = "0.45.0", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "0.188.6", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "0.141.1", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "0.202.5", path = "../swc_ecma_preset_env" }
swc_ecma_preset_env = { optional = true, version = "0.202.6", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "0.52.1", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "0.134.2", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_compat = { optional = true, version = "0.160.3", path = "../swc_ecma_transforms_compat" }
@ -358,7 +358,7 @@ swc_ecma_usage_analyzer = { optional = true, version = "0.20.2", path =
swc_ecma_utils = { optional = true, version = "0.124.2", path = "../swc_ecma_utils" }
swc_ecma_visit = { optional = true, version = "0.96.0", path = "../swc_ecma_visit" }
swc_node_base = { optional = true, version = "0.5.8", path = "../swc_node_base" }
swc_node_bundler = { optional = true, version = "0.57.5", path = "../swc_node_bundler" }
swc_node_bundler = { optional = true, version = "0.57.6", path = "../swc_node_bundler" }
swc_nodejs_common = { optional = true, version = "0.0.8", path = "../swc_nodejs_common" }
swc_plugin = { optional = true, version = "0.90.0", path = "../swc_plugin" }
swc_plugin_macro = { optional = true, version = "0.9.15", path = "../swc_plugin_macro" }

View File

@ -7,7 +7,7 @@ edition = "2021"
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_ecma_preset_env"
version = "0.202.5"
version = "0.202.6"
[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.235.6"
version = "0.235.7"
[package.metadata.docs.rs]
all-features = true
@ -44,7 +44,7 @@ swc_ecma_codegen = { version = "0.146.1", path = "../swc_ecma_codegen", optio
swc_ecma_dep_graph = { version = "0.113.1", path = "../swc_ecma_dep_graph", optional = true }
swc_ecma_minifier = { version = "0.188.6", path = "../swc_ecma_minifier", optional = true }
swc_ecma_parser = { version = "0.141.1", path = "../swc_ecma_parser", optional = true, default-features = false }
swc_ecma_preset_env = { version = "0.202.5", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_preset_env = { version = "0.202.6", path = "../swc_ecma_preset_env", optional = true }
swc_ecma_quote = { version = "0.57.1", path = "../swc_ecma_quote", optional = true }
swc_ecma_transforms = { version = "0.225.5", path = "../swc_ecma_transforms", optional = true }
swc_ecma_utils = { version = "0.124.2", path = "../swc_ecma_utils", optional = true }

View File

@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_estree_compat"
repository = "https://github.com/swc-project/swc.git"
version = "0.193.5"
version = "0.193.6"
[package.metadata.docs.rs]
all-features = true
@ -40,7 +40,7 @@ swc_node_comments = { version = "0.20.0", path = "../swc_node_comments/" }
criterion = "0.5"
pretty_assertions = "1.3"
swc = { version = "0.268.5", path = "../swc" }
swc = { version = "0.268.6", path = "../swc" }
swc_ecma_ast = { version = "0.110.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.141.1", path = "../swc_ecma_parser" }
swc_ecma_transforms = { version = "0.225.5", path = "../swc_ecma_transforms/" }

View File

@ -7,7 +7,7 @@ edition = "2021"
license = "Apache-2.0"
name = "swc_node_bundler"
repository = "https://github.com/swc-project/swc.git"
version = "0.57.5"
version = "0.57.6"
[lib]
bench = false
@ -29,7 +29,7 @@ serde_json = "1"
tracing = "0.1.37"
string_enum = { version = "0.4.1", path = "../string_enum" }
swc = { version = "0.268.5", path = "../swc" }
swc = { version = "0.268.6", path = "../swc" }
swc_atoms = { version = "0.6.0", path = "../swc_atoms" }
swc_bundler = { version = "0.221.6", path = "../swc_bundler", features = [
"concurrent",