From f28495dcd110e929156c1cf070ae0bb6fe5c7535 Mon Sep 17 00:00:00 2001 From: Matthew Clapp Date: Thu, 29 Apr 2021 00:50:39 -0700 Subject: [PATCH] Pre-release 0.16.2.1. --- docs/changelog.md | 2 +- src/pipx/version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index e21b3b9aeb..a8fccd61f2 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,4 +1,4 @@ -dev +0.16.2.1 - Changed non-venv-info warnings and notices from `pipx list` to print to stderr. This especially prevents `pipx list --json` from printing invalid json to stdout. (#680) - Fixed bug that could cause uninstall on Windows with injected packages to uninstall too many apps from the local binary directory. (#679) diff --git a/src/pipx/version.py b/src/pipx/version.py index 2ca9718124..90c3c3d217 100644 --- a/src/pipx/version.py +++ b/src/pipx/version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 16, 2, 0, 1, "dev0") +__version_info__ = (0, 16, 2, 1) __version__ = ".".join(str(i) for i in __version_info__)