diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d6900b..13dfe85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## CHANGELOG +### 3.5.0 + +* Handle multiple licenses better with options `--fail-on` and `--allow-only` +* Small change in output method for multiple licenses, change the separator from comma to semicolon + * Up to 3.4.0: `Python Software Foundation License, MIT License` + * 3.5.0 or later: `Python Software Foundation License; MIT License` + ### 3.4.0 * Implement new option `--packages` diff --git a/piplicenses.py b/piplicenses.py index 1d8708e..d8fc84d 100644 --- a/piplicenses.py +++ b/piplicenses.py @@ -61,7 +61,7 @@ open = open # allow monkey patching __pkgname__ = 'pip-licenses' -__version__ = '3.4.0' +__version__ = '3.5.0' __author__ = 'raimon' __license__ = 'MIT' __summary__ = ('Dump the software license list of '