Compare commits

..

3 Commits

Author SHA1 Message Date
e5775458f7 chore(deps): RUSTSEC-2026-0097 mitigation
Some checks failed
Publish Docker Images / coverage-and-sonar (push) Failing after 15m38s
2026-04-22 00:41:12 +02:00
2ecdbe3af9 feat(cli): add jj-lib version to version output 2026-04-22 00:41:12 +02:00
8e01d435b1 feat: set message for multiple revsets
Allows to set the revision message of multiple revisions by passing
them as arguments. This only supports simple revisions, such as `@`,
`@-`, `xs`, and so on. Comple revisions such as `@..@-` are not
supported.

Fixes: #5
2026-04-22 00:41:12 +02:00

View File

@@ -410,7 +410,9 @@ mod tests {
assert!(executor.is_err());
let valid_dir = assert_fs::TempDir::new().unwrap();
init_jj_repo(valid_dir.path()).await.expect("Failed to init jj repo");
init_jj_repo(valid_dir.path())
.await
.expect("Failed to init jj repo");
let executor = JjLib::with_working_dir(valid_dir.path()).await.unwrap();
let result = executor
.describe("this-bookmark-does-not-exist", "test: should fail")