chore: rename LICENSE files to use dashes instead of underscores#15643
chore: rename LICENSE files to use dashes instead of underscores#15643tenderdeve wants to merge 1 commit into
Conversation
cargo-about doesn't detect the license files because of the underscore in their names (`LICENSE_APACHE-2.0`, `LICENSE_MIT`). Rename them to the dashed form (`LICENSE-APACHE-2.0`, `LICENSE-MIT`), matching the more common convention, and update the relative-path pointer files under crates/tauri-driver and crates/tests/restart accordingly. Closes tauri-apps#15243
Package Changes Through 783dc5eThere are 12 changes which include tauri with minor, tauri-build with minor, tauri-utils with minor, tauri-runtime-wry with minor, tauri-runtime with minor, tauri-codegen with minor, tauri-macros with minor, tauri-plugin with minor, tauri-cli with minor, tauri-macos-sign with minor, tauri-bundler with minor, tauri-driver with minor Planned Package VersionsThe following package releases are the planned based on the context of changes in this pull request.
Add another change file through the GitHub UI by following this link. Read about change files or the docs at github.com/jbolda/covector |
Legend-Master
left a comment
There was a problem hiding this comment.
We might as well also do it for crates/tauri-bundler/License_MIT.md (and its Apache one)
And you need to sign your commits for me to merge this
cc @FabianLars maybe also take a look?
Closes #15243
cargo-about doesn't pick up the license files because the filenames use an underscore (
LICENSE_APACHE-2.0,LICENSE_MIT). Renamed them to the dashed form (LICENSE-APACHE-2.0,LICENSE-MIT) across the workspace, which is also the more common convention (as noted in the issue).The relative-path pointer files under
crates/tauri-driverandcrates/tests/restartwere updated to reference the new names too. No code orCargo.tomlreferences the old filenames.