Skip to content

Commit

Permalink
Using new default mode; #19
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Mar 30, 2023
1 parent 0842a2a commit 70b4855
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ CII to UBL Converter for EN 16931 invoices

# News and noteworthy

* v2.0.2 - 2023-03-30
* Changed the default mode of the CLI version from `INVOICE` to `AUTOMATIC`. See [issue #19](https://github.com/phax/en16931-cii2ubl/issues/19) - thanks @msccip
* v2.0.1 - 2023-03-15
* Added manual wildcard expansion of filenames
* Added new CLI option `--disable-wildcard-expansion` to disable the wildcard expansion and stick to the old resolution logic
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public class CIIToUBLConverter implements Callable <Integer>
@Option (names = "--ubl", paramLabel = "version", defaultValue = "2.1", description = "Version of the target UBL Format: '2.1', '2.2' or '2.3' (default: ${DEFAULT-VALUE})")
private String m_sUBLVersion;

@Option (names = "--mode", paramLabel = "mode", defaultValue = "INVOICE", description = "Allowed values: ${COMPLETION-CANDIDATES} (default: ${DEFAULT-VALUE})")
@Option (names = "--mode", paramLabel = "mode", defaultValue = "AUTOMATIC", description = "Allowed values: ${COMPLETION-CANDIDATES} (default: ${DEFAULT-VALUE})")
private EUBLCreationMode m_eMode;

@Option (names = { "-t",
Expand Down

0 comments on commit 70b4855

Please sign in to comment.