From 2c8a292cf8ddfbfe983a7f773fa4e8c044a8182e Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Sat, 18 Mar 2023 09:14:41 -0400 Subject: [PATCH] Release v2023.3.18 --- CHANGELOG.rst | 20 ++++++++++++++++++++ news/5617.feature.rst | 4 ---- news/5618.trivial.rst | 1 - news/5620.trivial.rst | 1 - news/5628.trivial.rst | 1 - news/5635.vendor.rst | 1 - pipenv/__version__.py | 2 +- 7 files changed, 21 insertions(+), 9 deletions(-) delete mode 100644 news/5617.feature.rst delete mode 100644 news/5618.trivial.rst delete mode 100644 news/5620.trivial.rst delete mode 100644 news/5628.trivial.rst delete mode 100644 news/5635.vendor.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 587dece4..c575b5de 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,23 @@ +2023.3.18 (2023-03-18) +====================== +Pipenv 2023.3.18 (2023-03-18) +============================= + + +Features & Improvements +----------------------- + +- Provide a more powerful solution than ``--keep-outdated`` and ``--selective-upgrade`` which are deprecated for removal. + Introducing the ``pipenv upgrade`` command which takes the same package specifiers as ``pipenv install`` and + updates the ``Pipfile`` and ``Pipfile.lock`` with a valid lock resolution that only effects the specified packages and their dependencies. + Additionally, the ``pipenv update`` command has been updated to use the ``pipenv upgrade`` routine when packages are provided, which will install sync the new lock file as well. `#5617 `_ + +Vendored Libraries +------------------ + +- Bump vistir to 0.8.0, requirementslib to 2.2.4. `#5635 `_ + + 2023.2.18 (2023-02-18) ============================= diff --git a/news/5617.feature.rst b/news/5617.feature.rst deleted file mode 100644 index fc47427f..00000000 --- a/news/5617.feature.rst +++ /dev/null @@ -1,4 +0,0 @@ -Provide a more powerful solution than ``--keep-outdated`` and ``--selective-upgrade`` which are deprecated for removal. -Introducing the ``pipenv upgrade`` command which takes the same package specifiers as ``pipenv install`` and -updates the ``Pipfile`` and ``Pipfile.lock`` with a valid lock resolution that only effects the specified packages and their dependencies. -Additionally, the ``pipenv update`` command has been updated to use the ``pipenv upgrade`` routine when packages are provided, which will install sync the new lock file as well. diff --git a/news/5618.trivial.rst b/news/5618.trivial.rst deleted file mode 100644 index 718a6602..00000000 --- a/news/5618.trivial.rst +++ /dev/null @@ -1 +0,0 @@ -Add missing spaces to the ``--keep-outdated`` flag's deprecation warning. diff --git a/news/5620.trivial.rst b/news/5620.trivial.rst deleted file mode 100644 index e3f1cf07..00000000 --- a/news/5620.trivial.rst +++ /dev/null @@ -1 +0,0 @@ -Use beautifulsoup4 as a dependency, not the bs4 redirect. diff --git a/news/5628.trivial.rst b/news/5628.trivial.rst deleted file mode 100644 index 724ee853..00000000 --- a/news/5628.trivial.rst +++ /dev/null @@ -1 +0,0 @@ -Show a different message for ``pipenv check`` depending on the ``--use-installed`` option. diff --git a/news/5635.vendor.rst b/news/5635.vendor.rst deleted file mode 100644 index e0c48bab..00000000 --- a/news/5635.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Bump vistir to 0.8.0, requirementslib to 2.2.4. diff --git a/pipenv/__version__.py b/pipenv/__version__.py index 30f27f3e..42c49048 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2023.2.19.dev0" +__version__ = "2023.3.18"