mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
notmuch dump: default to batch-tag format.
Although we didn't formally deprecate the old format, the new one has been available for a year.
This commit is contained in:
parent
3b36898f0b
commit
f4167e6de8
2 changed files with 11 additions and 1 deletions
10
NEWS
10
NEWS
|
@ -1,3 +1,13 @@
|
|||
Notmuch 0.18 (UNRELEASED)
|
||||
=========================
|
||||
|
||||
Command-Line Interface
|
||||
----------------------
|
||||
|
||||
`notmuch dump` now defaults to `batch-tag` format.
|
||||
|
||||
The old format is still available with `--format=sup`.
|
||||
|
||||
Notmuch 0.17 (2013-12-30)
|
||||
=========================
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ notmuch_dump_command (notmuch_config_t *config, int argc, char *argv[])
|
|||
char *output_file_name = NULL;
|
||||
int opt_index;
|
||||
|
||||
int output_format = DUMP_FORMAT_SUP;
|
||||
int output_format = DUMP_FORMAT_BATCH_TAG;
|
||||
|
||||
notmuch_opt_desc_t options[] = {
|
||||
{ NOTMUCH_OPT_KEYWORD, &output_format, "format", 'f',
|
||||
|
|
Loading…
Reference in a new issue