mirror of
https://github.com/swc-project/swc.git
synced 2024-11-21 21:41:48 +03:00
chore: Publish crates with swc_core
v5.0.2
Some checks failed
CI / Cargo fmt (push) Has been cancelled
CI / Cargo clippy (push) Has been cancelled
CI / Check license of dependencies (push) Has been cancelled
CI / Check (macos-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / Test wasm (binding_core_wasm) (push) Has been cancelled
CI / Test wasm (binding_minifier_wasm) (push) Has been cancelled
CI / Test wasm (binding_typescript_wasm) (push) Has been cancelled
CI / List crates (push) Has been cancelled
CI / Test node bindings - ${{ matrix.os }} (macos-latest) (push) Has been cancelled
CI / Test node bindings - ${{ matrix.os }} (windows-latest) (push) Has been cancelled
CI / Test with @swc/cli (push) Has been cancelled
CI / Miri (better_scoped_tls) (push) Has been cancelled
CI / Miri (string_enum) (push) Has been cancelled
CI / Miri (swc) (push) Has been cancelled
CI / Miri (swc_bundler) (push) Has been cancelled
Benchmark / Bench everything (push) Has been cancelled
Publish crates (auto) / Publish cargo crates (push) Has been cancelled
CI / Test - ${{ matrix.settings.crate }} - ${{ matrix.settings.os }} (push) Has been cancelled
CI / Done (push) Has been cancelled
Some checks failed
CI / Cargo fmt (push) Has been cancelled
CI / Cargo clippy (push) Has been cancelled
CI / Check license of dependencies (push) Has been cancelled
CI / Check (macos-latest) (push) Has been cancelled
CI / Check (ubuntu-latest) (push) Has been cancelled
CI / Check (windows-latest) (push) Has been cancelled
CI / Test wasm (binding_core_wasm) (push) Has been cancelled
CI / Test wasm (binding_minifier_wasm) (push) Has been cancelled
CI / Test wasm (binding_typescript_wasm) (push) Has been cancelled
CI / List crates (push) Has been cancelled
CI / Test node bindings - ${{ matrix.os }} (macos-latest) (push) Has been cancelled
CI / Test node bindings - ${{ matrix.os }} (windows-latest) (push) Has been cancelled
CI / Test with @swc/cli (push) Has been cancelled
CI / Miri (better_scoped_tls) (push) Has been cancelled
CI / Miri (string_enum) (push) Has been cancelled
CI / Miri (swc) (push) Has been cancelled
CI / Miri (swc_bundler) (push) Has been cancelled
Benchmark / Bench everything (push) Has been cancelled
Publish crates (auto) / Publish cargo crates (push) Has been cancelled
CI / Test - ${{ matrix.settings.crate }} - ${{ matrix.settings.os }} (push) Has been cancelled
CI / Done (push) Has been cancelled
This commit is contained in:
parent
aff9de5ea3
commit
1606d08927
@ -1,6 +0,0 @@
|
||||
---
|
||||
swc: patch
|
||||
swc_core: patch
|
||||
---
|
||||
|
||||
fix(swc): fix manual-tokio-runtmie -> manual-tokio-runtime typo
|
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,4 +1,12 @@
|
||||
# Changelog
|
||||
## [unreleased]
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
|
||||
|
||||
- **(es)** Fix typo in feature name ([#9721](https://github.com/swc-project/swc/issues/9721)) ([aff9de5](https://github.com/swc-project/swc/commit/aff9de5ea37d5d34d587b96b8044d08644936524))
|
||||
|
||||
## [1.9.1] - 2024-11-06
|
||||
|
||||
### Bug Fixes
|
||||
@ -1428,9 +1436,6 @@
|
||||
|
||||
|
||||
|
||||
- **(es/minifier)** Preserve unused special properties ([#9005](https://github.com/swc-project/swc/issues/9005)) ([e764ff6](https://github.com/swc-project/swc/commit/e764ff6f64d4e528a2af3e3ad7859ab3f8a2fe48))
|
||||
|
||||
|
||||
- **(es/minifier)** Fix comparison of `-0.0` ([#9012](https://github.com/swc-project/swc/issues/9012)) ([8a29577](https://github.com/swc-project/swc/commit/8a29577cc5bd3842d3bccfdbbffa45e4c9944d7f))
|
||||
|
||||
|
||||
|
4
Cargo.lock
generated
4
Cargo.lock
generated
@ -3850,7 +3850,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
||||
|
||||
[[package]]
|
||||
name = "swc"
|
||||
version = "5.0.0"
|
||||
version = "5.0.1"
|
||||
dependencies = [
|
||||
"ansi_term",
|
||||
"anyhow",
|
||||
@ -4115,7 +4115,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "swc_core"
|
||||
version = "5.0.1"
|
||||
version = "5.0.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"binding_macros",
|
||||
|
@ -33,7 +33,7 @@ binding_wasm = [
|
||||
|
||||
[dependencies]
|
||||
# Common deps for the SWC imports
|
||||
swc = { optional = true, version = "5.0.0", path = "../swc" }
|
||||
swc = { optional = true, version = "5.0.1", path = "../swc" }
|
||||
swc_common = { optional = true, version = "4.0.0", path = "../swc_common" }
|
||||
swc_ecma_ast = { optional = true, version = "4.0.1", path = "../swc_ecma_ast" }
|
||||
swc_ecma_transforms = { optional = true, version = "5.0.0", path = "../swc_ecma_transforms" }
|
||||
|
@ -9,7 +9,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
|
||||
license = "Apache-2.0"
|
||||
name = "swc"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "5.0.0"
|
||||
version = "5.0.1"
|
||||
|
||||
[lib]
|
||||
bench = false
|
||||
|
@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
|
||||
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
||||
walkdir = { workspace = true }
|
||||
|
||||
swc_core = { version = "5.0.1", features = [
|
||||
swc_core = { version = "5.0.2", features = [
|
||||
"trace_macro",
|
||||
"common_concurrent",
|
||||
"base_concurrent",
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
name = "swc_core"
|
||||
repository = "https://github.com/swc-project/swc.git"
|
||||
version = "5.0.1"
|
||||
version = "5.0.2"
|
||||
[package.metadata.docs.rs]
|
||||
features = [
|
||||
"allocator_node",
|
||||
@ -339,7 +339,7 @@ once_cell = { workspace = true, optional = true }
|
||||
|
||||
# swc_* dependencies
|
||||
binding_macros = { optional = true, version = "5.0.0", path = "../binding_macros" }
|
||||
swc = { optional = true, version = "5.0.0", path = "../swc" }
|
||||
swc = { optional = true, version = "5.0.1", path = "../swc" }
|
||||
swc_atoms = { optional = true, version = "2.0.0", path = "../swc_atoms" }
|
||||
swc_bundler = { optional = true, version = "5.0.0", path = "../swc_bundler" }
|
||||
swc_cached = { optional = true, version = "1.0.0", path = "../swc_cached" }
|
||||
|
@ -41,7 +41,7 @@ codspeed-criterion-compat = { workspace = true }
|
||||
criterion = { workspace = true }
|
||||
pretty_assertions = { workspace = true }
|
||||
|
||||
swc = { version = "5.0.0", path = "../swc" }
|
||||
swc = { version = "5.0.1", path = "../swc" }
|
||||
swc_ecma_ast = { version = "4.0.1", path = "../swc_ecma_ast" }
|
||||
swc_ecma_parser = { version = "5.0.0", path = "../swc_ecma_parser" }
|
||||
swc_ecma_transforms = { version = "5.0.0", path = "../swc_ecma_transforms/" }
|
||||
|
@ -29,7 +29,7 @@ serde_json = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
|
||||
string_enum = { version = "1.0.0", path = "../string_enum" }
|
||||
swc = { version = "5.0.0", path = "../swc" }
|
||||
swc = { version = "5.0.1", path = "../swc" }
|
||||
swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
|
||||
swc_bundler = { version = "5.0.0", path = "../swc_bundler", features = [
|
||||
"concurrent",
|
||||
|
Loading…
Reference in New Issue
Block a user