Skip to content

Commit a73c004

Browse files
authored
chore: release v1.4.7-alpha.1 (#10998)
1 parent 8bc3ece commit a73c004

23 files changed

Lines changed: 238 additions & 205 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 84 additions & 84 deletions
Large diffs are not rendered by default.

crates/node_binding/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rspack/binding",
3-
"version": "1.4.6",
3+
"version": "1.4.7-alpha.1",
44
"license": "MIT",
55
"description": "Node binding for rspack",
66
"main": "binding.js",

crates/rspack_binding_builder_macros/Cargo.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,13 @@ proc-macro = true
1717
rspack_binding_builder = { workspace = true }
1818

1919
proc-macro2 = { workspace = true }
20-
quote = { workspace = true }
21-
syn = { workspace = true, features = ["full"] }
20+
quote = { workspace = true }
21+
syn = { workspace = true, features = [
22+
"full",
23+
"visit-mut",
24+
"derive",
25+
"parsing",
26+
"printing",
27+
"clone-impls",
28+
"proc-macro",
29+
] }

crates/rspack_error/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ anyhow = { workspace = true, features = ["backtrace"] }
1212
cow-utils = { workspace = true }
1313
derive_more = { workspace = true, features = ["debug"] }
1414
futures = { workspace = true }
15-
miette = { workspace = true, features = ["fancy"] }
15+
miette = { workspace = true, features = ["fancy", "derive"] }
1616
once_cell = { workspace = true }
1717
owo-colors = { workspace = true }
1818
rspack_cacheable = { workspace = true }

crates/rspack_napi_macros/Cargo.toml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,13 @@ proc-macro = true
1111

1212
[dependencies]
1313
proc-macro2 = { workspace = true }
14-
quote = { workspace = true }
15-
syn = { workspace = true, features = ["full"] }
14+
quote = { workspace = true }
15+
syn = { workspace = true, features = [
16+
"full",
17+
"visit-mut",
18+
"derive",
19+
"parsing",
20+
"printing",
21+
"clone-impls",
22+
"proc-macro",
23+
] }

crates/rspack_regex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ version.workspace = true
1212
cow-utils = { workspace = true }
1313
napi = { workspace = true }
1414
regex-syntax = { workspace = true }
15-
regress = { workspace = true }
15+
regress = { workspace = true, features = ["backend-pikevm", "std"] }
1616
rspack_cacheable = { workspace = true }
1717
rspack_error = { workspace = true }
1818
swc_core = { workspace = true, features = ["ecma_ast"] }

crates/rspack_workspace/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

crates/rspack_workspace/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ description = "Rspack workspace utilities"
55
documentation.workspace = true
66
edition.workspace = true
77
homepage.workspace = true
8-
include = ["src/*"]
98
license.workspace = true
109
name = "rspack_workspace"
1110
repository.workspace = true
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
//! This is a generated file. Don't modify it by hand! Run 'cargo codegen' to re-generate the file.
2+
/// The version of the `swc_core` package used in the current workspace.
3+
pub const fn rspack_swc_core_version() -> &'static str {
4+
"31.1.0"
5+
}
6+
7+
/// The version of the JavaScript `@rspack/core` package.
8+
pub const fn rspack_pkg_version() -> &'static str {
9+
"1.4.7-alpha.1"
10+
}
11+
12+
/// The version of the Rust workspace in the root `Cargo.toml` of the repository.
13+
pub const fn rspack_workspace_version() -> &'static str {
14+
"0.4.7-alpha.1"
15+
}

0 commit comments

Comments
 (0)