Skip to content

Commit cd8c074

Browse files
feat(cli): add support for Cargo's workspace inheritance for the package version, closes #5070 (#5775)
Co-authored-by: Lucas Nogueira <[email protected]>
1 parent f7a080a commit cd8c074

File tree

16 files changed

+3371
-3
lines changed

16 files changed

+3371
-3
lines changed

.changes/version-inheritance.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'cli.rs': 'minor'
3+
---
4+
5+
Add support for Cargo's workspace inheritance for the package version.

.scripts/update-lockfiles.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0
44
# SPDX-License-Identifier: MIT
55

6-
declare -a examples=("api" "sidecar" "updater" "resources" "tauri-dynamic-lib")
6+
declare -a examples=("api" "sidecar" "updater" "resources" "tauri-dynamic-lib" "workspace")
77
declare -a tooling=("bench" "cli" "webdriver")
88

99
for example in "${examples[@]}"

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ exclude = [
2121
"examples/updater/src-tauri",
2222
"examples/resources/src-tauri",
2323
"examples/sidecar/src-tauri",
24-
"examples/web/core"
24+
"examples/web/core",
25+
"examples/workspace"
2526
]
2627

2728
# default to small, optimized workspace release binaries

0 commit comments

Comments
 (0)