Skip to content

Commit

Permalink
Merge pull request #84 from raimon49/release-3.1.0
Browse files Browse the repository at this point in the history
Release 3.1.0
  • Loading branch information
raimon49 authored Nov 26, 2020
2 parents 501a95d + 03cd633 commit 51d8f95
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## CHANGELOG

### 3.1.0

* Implement new option for use in continuous integration
* `--fail-on`
* `--allow-only`

### 3.0.0

* Dropped support Python 3.5
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pip-licenses

[![Build Status](https://travis-ci.org/raimon49/pip-licenses.svg?branch=master)](https://travis-ci.org/raimon49/pip-licenses) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pip-licenses.svg)](https://pypi.org/project/pip-licenses/) [![PyPI version](https://badge.fury.io/py/pip-licenses.svg)](https://badge.fury.io/py/pip-licenses) [![GitHub Release](https://img.shields.io/github/release/raimon49/pip-licenses.svg)](https://github.com/raimon49/pip-licenses/releases) [![Codecov](https://codecov.io/gh/raimon49/pip-licenses/branch/master/graph/badge.svg)](https://codecov.io/gh/raimon49/pip-licenses) [![GitHub contributors](https://img.shields.io/github/contributors/raimon49/pip-licenses)](https://github.com/raimon49/pip-licenses/graphs/contributors) [![BSD License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/raimon49/pip-licenses/blob/master/LICENSE) [![Requirements Status](https://requires.io/github/raimon49/pip-licenses/requirements.svg?branch=master)](https://requires.io/github/raimon49/pip-licenses/requirements/?branch=master)
[![Build Status](https://travis-ci.org/raimon49/pip-licenses.svg?branch=master)](https://travis-ci.org/raimon49/pip-licenses) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pip-licenses.svg)](https://pypi.org/project/pip-licenses/) [![PyPI version](https://badge.fury.io/py/pip-licenses.svg)](https://badge.fury.io/py/pip-licenses) [![GitHub Release](https://img.shields.io/github/release/raimon49/pip-licenses.svg)](https://github.com/raimon49/pip-licenses/releases) [![Codecov](https://codecov.io/gh/raimon49/pip-licenses/branch/master/graph/badge.svg)](https://codecov.io/gh/raimon49/pip-licenses) [![GitHub contributors](https://img.shields.io/github/contributors/raimon49/pip-licenses)](https://github.com/raimon49/pip-licenses/graphs/contributors) [![BSD License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/raimon49/pip-licenses/blob/master/LICENSE) [![PyPI - Downloads](https://img.shields.io/pypi/dm/pip-licenses)](https://pypistats.org/packages/pip-licenses) [![Requirements Status](https://requires.io/github/raimon49/pip-licenses/requirements.svg?branch=master)](https://requires.io/github/raimon49/pip-licenses/requirements/?branch=master)

Dump the software license list of Python packages installed with pip.

Expand Down
18 changes: 9 additions & 9 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
attrs==20.3.0 # via pytest
autopep8==1.5.4 # via -r dev-requirements.in
bleach==3.2.1 # via readme-renderer
certifi==2020.6.20 # via requests
cffi==1.14.3 # via cryptography
certifi==2020.11.8 # via requests
cffi==1.14.4 # via cryptography
chardet==3.0.4 # via requests
click==7.1.2 # via pip-tools
codecov==2.1.10 # via -r dev-requirements.in
Expand All @@ -18,10 +18,10 @@ cryptography==3.2.1 # via secretstorage
docutils==0.16 # via -r dev-requirements.in, readme-renderer
idna==2.10 # via requests
iniconfig==1.1.1 # via pytest
jeepney==0.4.3 # via keyring, secretstorage
keyring==21.4.0 # via twine
jeepney==0.6.0 # via keyring, secretstorage
keyring==21.5.0 # via twine
packaging==20.4 # via bleach, pytest
pip-tools==5.3.1 # via -r dev-requirements.in
pip-tools==5.4.0 # via -r dev-requirements.in
pkginfo==1.6.1 # via twine
pluggy==0.13.1 # via pytest
ptable==0.9.2 # via -r requirements.in
Expand All @@ -37,14 +37,14 @@ pytest-runner==5.2 # via -r dev-requirements.in
pytest==6.1.2 # via pytest-cov, pytest-pycodestyle
readme-renderer==28.0 # via twine
requests-toolbelt==0.9.1 # via twine
requests==2.24.0 # via codecov, requests-toolbelt, twine
requests==2.25.0 # via codecov, requests-toolbelt, twine
rfc3986==1.4.0 # via twine
secretstorage==3.1.2 # via keyring
secretstorage==3.3.0 # via keyring
six==1.15.0 # via bleach, cryptography, packaging, pip-tools, readme-renderer
toml==0.10.2 # via autopep8, pytest
tqdm==4.51.0 # via twine
tqdm==4.53.0 # via twine
twine==3.2.0 # via -r dev-requirements.in
urllib3==1.25.11 # via requests
urllib3==1.26.2 # via requests
webencodings==0.5.1 # via bleach
wheel==0.35.1 # via -r dev-requirements.in, pypandoc

Expand Down
2 changes: 1 addition & 1 deletion piplicenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
open = open # allow monkey patching

__pkgname__ = 'pip-licenses'
__version__ = '3.0.0'
__version__ = '3.1.0'
__author__ = 'raimon'
__license__ = 'MIT License'
__summary__ = ('Dump the software license list of '
Expand Down

0 comments on commit 51d8f95

Please sign in to comment.