From 1f047bc0c28f528e566da80d1ee3ba0c7db2bdf1 Mon Sep 17 00:00:00 2001 From: botpub Date: Thu, 3 Sep 2020 07:25:01 +0000 Subject: [PATCH] Release VirtualFish 2.5.0 --- CHANGELOG.md | 10 ++++++++++ RELEASE.md | 8 -------- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 10 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b36491..7de37b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ CHANGELOG ========= +2.5.0 - 2020-09-03 +------------------ + +* `vf upgrade`: New command for upgrading and re-building environments (#141) +* `vf ls`: Add `--details` flag to show Python status and version numbers (#190) +* `vf --help`: Add dynamic column spacing +* `vf all`: Show environment name before command output +* Add `__vfsupport_check_python` function to ensure Python interpreters work +* Demote Homebrew Python priority when locating interpreters + 2.4.0 - 2020-07-22 ------------------ diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index d1b9628..0000000 --- a/RELEASE.md +++ /dev/null @@ -1,8 +0,0 @@ -Release type: minor - -* `vf upgrade`: New command for upgrading and re-building environments (#141) -* `vf ls`: Add `--details` flag to show Python status and version numbers (#190) -* `vf --help`: Add dynamic column spacing -* `vf all`: Show environment name before command output -* Add `__vfsupport_check_python` function to ensure Python interpreters work -* Demote Homebrew Python priority when locating interpreters diff --git a/docs/conf.py b/docs/conf.py index a5b455e..b609275 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,7 +51,7 @@ # built documents. # # The short X.Y version. -version = "2.4.0" +version = "2.5.0" release = version # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/pyproject.toml b/pyproject.toml index 86a2276..03bee59 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "virtualfish" -version = "2.4.0" +version = "2.5.0" description = "Fish shell tool for managing Python virtual environments" authors = ["Justin Mayer "] license = "MIT"