Skip to content

Commit

Permalink
Merge pull request #202 from raimon49/release-4.5.0
Browse files Browse the repository at this point in the history
Release 4.5.0
  • Loading branch information
raimon49 authored Jul 11, 2024
2 parents ef8805a + 41f52cc commit 9c2db19
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
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

0 comments on commit 9c2db19

Please sign in to comment.