Skip to content

Commit 093fb60

Browse files
author
Chad Smith
authored
bump version to 0.15.0.0 (#312)
1 parent d3729c3 commit 093fb60

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

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.14.0.0-blue.svg" /></a>
24+
<img src="https://img.shields.io/badge/pypi-0.15.0.0-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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
0.15.0.0
22

3+
Upgrade instructions: When upgrading to 0.15.0.0 or above from a pre-0.15.0.0 version, you must re-install all packages to take advantage of the new persistent pipx metadata files introduced in this release. These metadata files store pip specification values, injected packages, any custom pip arguments, and more in each main package's venv. You can do this by running `pipx reinstall-all` or `pipx uninstall-all`, then reinstalling manually.
4+
35
- `install` now has no `--spec` option. You may specify any valid pip specification for `install`'s main argument.
46
- `inject` will now accept pip specifications for dependency arguments
57
- Metadata is now stored for each application installed, including install options like `--spec`, and injected packages. This information allows upgrade, upgrade-all and reinstall-all to work properly even with non-pypi installed packages. (#222)

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.14.0.0-blue.svg" /></a>
24+
<img src="https://img.shields.io/badge/pypi-0.15.0.0-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.14.0.0"
24+
__version__ = "0.15.0.0"
2525

2626

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

0 commit comments

Comments
 (0)