diff options
| -rw-r--r-- | Cargo.toml | 4 | ||||
| -rw-r--r-- | src/lib/git/mod.rs | 4 | ||||
| -rw-r--r-- | src/lib/mbox_parser.rs | 4 | ||||
| -rw-r--r-- | test_utils/Cargo.toml | 2 | ||||
| -rw-r--r-- | tests/ngit_send.rs | 4 |
5 files changed, 9 insertions, 9 deletions
| @@ -1,6 +1,6 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | name = "ngit" | 2 | name = "ngit" |
| 3 | version = "2.2.0" | 3 | version = "2.2.1" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | description = "nostr plugin for git" | 5 | description = "nostr plugin for git" |
| 6 | authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] | 6 | authors = ["DanConwayDev <DanConwayDev@protonmail.com>"] |
| @@ -23,7 +23,7 @@ console = "0.16.0" | |||
| 23 | dialoguer = "0.12.0" | 23 | dialoguer = "0.12.0" |
| 24 | directories = "6.0.0" | 24 | directories = "6.0.0" |
| 25 | futures = "0.3.31" | 25 | futures = "0.3.31" |
| 26 | git2 = "0.20.2" | 26 | git2 = "0.20.4" |
| 27 | indicatif = "0.18.0" | 27 | indicatif = "0.18.0" |
| 28 | mailparse = "0.16.1" | 28 | mailparse = "0.16.1" |
| 29 | nostr = { version = "0.44.1", features = ["nip49"] } | 29 | nostr = { version = "0.44.1", features = ["nip49"] } |
diff --git a/src/lib/git/mod.rs b/src/lib/git/mod.rs index dc84ee3..23fa5f0 100644 --- a/src/lib/git/mod.rs +++ b/src/lib/git/mod.rs | |||
| @@ -1477,7 +1477,7 @@ mod tests { | |||
| 1477 | +some content1\n\\ \ | 1477 | +some content1\n\\ \ |
| 1478 | No newline at end of file\n\ | 1478 | No newline at end of file\n\ |
| 1479 | --\n\ | 1479 | --\n\ |
| 1480 | libgit2 1.9.1\n\ | 1480 | libgit2 1.9.2\n\ |
| 1481 | \n\ | 1481 | \n\ |
| 1482 | ", | 1482 | ", |
| 1483 | git_repo.make_patch_from_commit(&oid_to_sha1(&oid), &None)?, | 1483 | git_repo.make_patch_from_commit(&oid_to_sha1(&oid), &None)?, |
| @@ -1513,7 +1513,7 @@ mod tests { | |||
| 1513 | +some content1\n\\ \ | 1513 | +some content1\n\\ \ |
| 1514 | No newline at end of file\n\ | 1514 | No newline at end of file\n\ |
| 1515 | --\n\ | 1515 | --\n\ |
| 1516 | libgit2 1.9.1\n\ | 1516 | libgit2 1.9.2\n\ |
| 1517 | \n\ | 1517 | \n\ |
| 1518 | ", | 1518 | ", |
| 1519 | git_repo.make_patch_from_commit(&oid_to_sha1(&oid), &Some((3, 5)))?, | 1519 | git_repo.make_patch_from_commit(&oid_to_sha1(&oid), &Some((3, 5)))?, |
diff --git a/src/lib/mbox_parser.rs b/src/lib/mbox_parser.rs index 48190ba..f3815f9 100644 --- a/src/lib/mbox_parser.rs +++ b/src/lib/mbox_parser.rs | |||
| @@ -333,7 +333,7 @@ index 0000000..a66525d | |||
| 333 | +some content1 | 333 | +some content1 |
| 334 | \\ No newline at end of file | 334 | \\ No newline at end of file |
| 335 | -- | 335 | -- |
| 336 | libgit2 1.9.1 | 336 | libgit2 1.9.2 |
| 337 | 337 | ||
| 338 | " | 338 | " |
| 339 | .to_string() | 339 | .to_string() |
| @@ -531,7 +531,7 @@ Subject: [PATCH] test | |||
| 531 | 531 | ||
| 532 | This is the body. | 532 | This is the body. |
| 533 | -- | 533 | -- |
| 534 | libgit2 1.9.1 | 534 | libgit2 1.9.2 |
| 535 | 535 | ||
| 536 | diff --git a/file.txt b/file.txt | 536 | diff --git a/file.txt b/file.txt |
| 537 | "; | 537 | "; |
diff --git a/test_utils/Cargo.toml b/test_utils/Cargo.toml index e7f5e05..68eba20 100644 --- a/test_utils/Cargo.toml +++ b/test_utils/Cargo.toml | |||
| @@ -9,7 +9,7 @@ assert_cmd = "2.0.17" | |||
| 9 | dialoguer = "0.12.0" | 9 | dialoguer = "0.12.0" |
| 10 | directories = "6.0.0" | 10 | directories = "6.0.0" |
| 11 | futures = "0.3.31" | 11 | futures = "0.3.31" |
| 12 | git2 = "0.20.2" | 12 | git2 = "0.20.4" |
| 13 | nostr = "0.44.1" | 13 | nostr = "0.44.1" |
| 14 | nostr-database = "0.44.0" | 14 | nostr-database = "0.44.0" |
| 15 | nostr-lmdb = "0.44.0" | 15 | nostr-lmdb = "0.44.0" |
diff --git a/tests/ngit_send.rs b/tests/ngit_send.rs index 67b2209..9e66051 100644 --- a/tests/ngit_send.rs +++ b/tests/ngit_send.rs | |||
| @@ -421,7 +421,7 @@ mod when_cover_letter_details_specified_with_range_of_head_2_sends_cover_letter_ | |||
| 421 | +some content\n\\ \ | 421 | +some content\n\\ \ |
| 422 | No newline at end of file\n\ | 422 | No newline at end of file\n\ |
| 423 | --\n\ | 423 | --\n\ |
| 424 | libgit2 1.9.1\n\ | 424 | libgit2 1.9.2\n\ |
| 425 | \n\ | 425 | \n\ |
| 426 | ", | 426 | ", |
| 427 | ); | 427 | ); |
| @@ -447,7 +447,7 @@ mod when_cover_letter_details_specified_with_range_of_head_2_sends_cover_letter_ | |||
| 447 | +some content\n\\ \ | 447 | +some content\n\\ \ |
| 448 | No newline at end of file\n\ | 448 | No newline at end of file\n\ |
| 449 | --\n\ | 449 | --\n\ |
| 450 | libgit2 1.9.1\n\ | 450 | libgit2 1.9.2\n\ |
| 451 | \n\ | 451 | \n\ |
| 452 | ", | 452 | ", |
| 453 | ); | 453 | ); |