diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 587dece403..c575b5de07 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 fc47427f56..0000000000 --- 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 718a6602d8..0000000000 --- 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 e3f1cf07d9..0000000000 --- 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 724ee853c2..0000000000 --- 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 e0c48bab91..0000000000 --- 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 30f27f3eef..42c49048ac 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2023.2.19.dev0" +__version__ = "2023.3.18"