Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.5.0 #202

Merged
merged 5 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## CHANGELOG

### 4.5.0

* Implement new feature pyproject.toml support

### 4.4.0

* Implement new option `--partial-match`
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The design policy of `pip-licenses` is as follows.

* Focus only on outputting license information of Python packages installed in user's environment.
* Support Python 3.8 or later.
* External packages that depend on runtime are [prettytable](https://pypi.org/project/prettytable/) only.
* External packages that depend on runtime are [prettytable](https://pypi.org/project/prettytable/) and [tomli](https://pypi.org/project/tomli/) only.
* Expect to be able to use [importlib\_metadata](https://importlib_metadata.readthedocs.io/) APIs.

## Setup
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Dump the software license list of Python packages installed with pip.
* [Option: fail\-on](#option-fail-on)
* [Option: allow\-only](#option-allow-only)
* [Option: partial\-match](#option-partial-match)
* [pyproject.toml support](#pyproject-toml-support)
* [pyproject.toml support](#pyprojecttoml-support)
* [More Information](#more-information)
* [Dockerfile](#dockerfile)
* [About UnicodeEncodeError](#about-unicodeencodeerror)
Expand Down
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ bleach==5.0.1
# via readme-renderer
build==0.9.0
# via pip-tools
certifi==2023.7.22
certifi==2024.7.4
# via requests
cffi==1.15.1
# via cryptography
Expand Down Expand Up @@ -151,7 +151,7 @@ wheel==0.38.4
# via
# -r dev-requirements.in
# pip-tools
zipp==3.11.0
zipp==3.19.1
# via importlib-metadata

# The following packages are considered to be unsafe in a requirements file:
Expand Down
2 changes: 1 addition & 1 deletion piplicenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
open = open # allow monkey patching

__pkgname__ = "pip-licenses"
__version__ = "4.4.0"
__version__ = "4.5.0"
__author__ = "raimon"
__license__ = "MIT"
__summary__ = (
Expand Down