⭐️ A friendly language for building type-safe, scalable systems!
1

Configure Feed

Select the types of activity you want to include in your feed.

Make Hex owner CLI commands more consistent

Louis Pilfold (Jul 10, 2026, 1:28 PM +0100) 6b993dee b16ddda2

+12 -2
+10 -1
CHANGELOG.md
··· 69 69 70 70 ```toml 71 71 [dependencies] 72 - my_package = { git = "https://github.com/example/monorepo", ref = "main", path = "packages/my_package" } 72 + my_package = { 73 + git = "https://github.com/example/monorepo", 74 + ref = "main", 75 + path = "packages/my_package", 76 + } 73 77 ``` 74 78 75 79 ([John Downey](https://github.com/jtdowney)) 80 + 81 + - The `gleam hex owner transfer` command now uses the flag `--user` instead of 82 + the flag `--to`. The `gleam hex owner add` command now takes the package name 83 + via the flag `--package`. 84 + ([Louis Pilfold](https://github.com/lpil)) 76 85 77 86 ### Language server 78 87
+2 -1
compiler-cli/src/lib.rs
··· 836 836 /// 837 837 #[command(verbatim_doc_comment)] 838 838 Add { 839 + #[arg(long)] 839 840 package: String, 840 841 841 842 /// The username or email of the additional owner ··· 860 861 package: String, 861 862 862 863 /// The username or email of the new owner 863 - #[arg(long = "to")] 864 + #[arg(long = "user")] 864 865 username_or_email: String, 865 866 }, 866 867 }