Skip to content

Commit 7a47610

Browse files
authored
0.15.1.2 (#327)
fixes app search in dependencies, fixes minor bug in upgrade-all
1 parent dfd4012 commit 7a47610

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ See Contributing for how to update this file.
2121
<a href="https://travis-ci.org/pipxproject/pipx"><img src="https://travis-ci.org/pipxproject/pipx.svg?branch=master" /></a>
2222

2323
<a href="https://pypi.python.org/pypi/pipx/">
24-
<img src="https://img.shields.io/badge/pypi-0.15.1.1-blue.svg" /></a>
24+
<img src="https://img.shields.io/badge/pypi-0.15.1.2-blue.svg" /></a>
2525
<a href="https://github.com/ambv/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
2626
</p>
2727

docs/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dev
1+
0.15.1.2
22

33
- [bugfix] Fix recursive search of dependencies' apps so no apps are missed.
44
- `upgrade-all` now skips editable packages, because pip disallows upgrading editable packages.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ See Contributing for how to update this file.
2121
<a href="https://travis-ci.org/pipxproject/pipx"><img src="https://travis-ci.org/pipxproject/pipx.svg?branch=master" /></a>
2222

2323
<a href="https://pypi.python.org/pypi/pipx/">
24-
<img src="https://img.shields.io/badge/pypi-0.15.1.1-blue.svg" /></a>
24+
<img src="https://img.shields.io/badge/pypi-0.15.1.2-blue.svg" /></a>
2525
<a href="https://github.com/ambv/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
2626
</p>
2727

src/pipx/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from .util import PipxError, mkdir
2222
from .venv import VenvContainer
2323

24-
__version__ = "0.15.1.1"
24+
__version__ = "0.15.1.2"
2525

2626

2727
def simple_parse_version(s, segments=4) -> Tuple[Union[int, str], ...]:

0 commit comments

Comments
 (0)