Skip to content

Commit

Permalink
chore: Bump crates
Browse files Browse the repository at this point in the history
  • Loading branch information
swc-bot committed Jan 19, 2024
1 parent 5e40dc7 commit 6d9939d
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 13 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@

- **(es/typescript)** Fix panic on invalid jsx pragma ([#8513](https://github.com/swc-project/swc/issues/8513)) ([f40f59b](https://github.com/swc-project/swc/commit/f40f59bd707a9d21d8eb41e42b5c6a1c95f0bb7e))

### Miscellaneous Tasks



- **(preset-env)** Update `browserslist-rs` ([#8524](https://github.com/swc-project/swc/issues/8524)) ([5e40dc7](https://github.com/swc-project/swc/commit/5e40dc7d8c7d7b979c3765fbaa2f9c9b41cf49a0))

### Testing


Expand Down Expand Up @@ -1485,9 +1491,6 @@



- **(es/compat)** Make stage 3 decorator pass use correct state for inner classes ([#7508](https://github.com/swc-project/swc/issues/7508)) ([cc4146c](https://github.com/swc-project/swc/commit/cc4146c9d3a21514031e46003170a3fdaac1987a))


- **(es/react)** Default to empty string when emitting refresh signature ([#7514](https://github.com/swc-project/swc/issues/7514)) ([8e933c8](https://github.com/swc-project/swc/commit/8e933c8a9fdf8867deb7f0d108b99430949aad54))

### Features
Expand Down
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/preset_env_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ documentation = "https://rustdoc.swc.rs/preset_env_base/"
edition = "2021"
license = "Apache-2.0"
name = "preset_env_base"
version = "0.4.9"
version = "0.4.10"

[lib]
bench = false
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ swc_css_compat = { optional = true, version = "0.27.24", path
swc_css_minifier = { optional = true, version = "0.116.24", path = "../swc_css_minifier" }
swc_css_modules = { optional = true, version = "0.29.26", path = "../swc_css_modules" }
swc_css_parser = { optional = true, version = "0.150.22", path = "../swc_css_parser" }
swc_css_prefixer = { optional = true, version = "0.153.25", path = "../swc_css_prefixer" }
swc_css_prefixer = { optional = true, version = "0.153.26", path = "../swc_css_prefixer" }
swc_css_utils = { optional = true, version = "0.137.14", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "0.139.14", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "0.110.17", path = "../swc_ecma_ast" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_css/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_css"
repository = "https://github.com/swc-project/swc.git"
version = "0.157.29"
version = "0.157.30"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -28,6 +28,6 @@ swc_css_compat = { version = "0.27.24", path = "../swc_css_compat", optional =
swc_css_minifier = { version = "0.116.24", path = "../swc_css_minifier", optional = true }
swc_css_modules = { version = "0.29.26", path = "../swc_css_modules", optional = true }
swc_css_parser = { version = "0.150.22", path = "../swc_css_parser" }
swc_css_prefixer = { version = "0.153.25", path = "../swc_css_prefixer", optional = true }
swc_css_prefixer = { version = "0.153.26", path = "../swc_css_prefixer", optional = true }
swc_css_utils = { version = "0.137.14", path = "../swc_css_utils/" }
swc_css_visit = { version = "0.139.14", path = "../swc_css_visit" }
4 changes: 2 additions & 2 deletions crates/swc_css_prefixer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
license = "Apache-2.0"
name = "swc_css_prefixer"
repository = "https://github.com/swc-project/swc.git"
version = "0.153.25"
version = "0.153.26"

[lib]
bench = false
Expand All @@ -17,7 +17,7 @@ once_cell = "1.18.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"

preset_env_base = { version = "0.4.9", path = "../preset_env_base" }
preset_env_base = { version = "0.4.10", path = "../preset_env_base" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.12", path = "../swc_common" }
swc_css_ast = { version = "0.140.14", path = "../swc_css_ast" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_preset_env/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ serde = { version = "1", features = ["derive"], optional = true }
serde_json = "1"
st-map = "0.2.0"

preset_env_base = { version = "0.4.9", path = "../preset_env_base" }
preset_env_base = { version = "0.4.10", path = "../preset_env_base" }
rustc-hash = "1.1.0"
string_enum = { version = "0.4.2", path = "../string_enum" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
Expand Down

0 comments on commit 6d9939d

Please sign in to comment.