diff --git a/CHANGELOG.rst b/CHANGELOG.rst index df5e97b0af..35e1b03d4b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,36 @@ +2023.8.19 (2023-08-19) +====================== +Pipenv 2023.8.19 (2023-08-19) +============================= + + +Features & Improvements +----------------------- + +- The ``--categories`` option now works with requirements.txt file. `#5722 `_ + +Bug Fixes +--------- + +- Drop requirementslib for managing pip lines and InstallRequirements, bring remaining requirementslib functionality into pipenv. + Fixes numerous reports about extras installs with vcs and file installs; format pip lines correctly to not generate deprecation warnings. `#5793 `_ + +Vendored Libraries +------------------ + +- Update pip 23.2 -> 23.2.1 `#5822 `_ + +Improved Documentation +---------------------- + +- Added documentation on how to move or rename a project directory `#5129 `_ + +Removals and Deprecations +------------------------- + +- The ``--skip-lock`` flag which was deprecated, has now been removed to unblock modernizing the pipenv resolver code. `#5805 `_ + + 2023.7.23 (2023-07-23) ====================== diff --git a/news/5129.doc.rst b/news/5129.doc.rst deleted file mode 100644 index b659072c6d..0000000000 --- a/news/5129.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Added documentation on how to move or rename a project directory diff --git a/news/5722.feature.rst b/news/5722.feature.rst deleted file mode 100644 index e4e835ec70..0000000000 --- a/news/5722.feature.rst +++ /dev/null @@ -1 +0,0 @@ -The ``--categories`` option now works with requirements.txt file. diff --git a/news/5793.bugfix.rst b/news/5793.bugfix.rst deleted file mode 100644 index c95435728f..0000000000 --- a/news/5793.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Drop requirementslib for managing pip lines and InstallRequirements, bring remaining requirementslib functionality into pipenv. -Fixes numerous reports about extras installs with vcs and file installs; format pip lines correctly to not generate deprecation warnings. diff --git a/news/5805.removal.rst b/news/5805.removal.rst deleted file mode 100644 index 88cef0afa1..0000000000 --- a/news/5805.removal.rst +++ /dev/null @@ -1 +0,0 @@ -The ``--skip-lock`` flag which was deprecated, has now been removed to unblock modernizing the pipenv resolver code. diff --git a/news/5822.vendor.rst b/news/5822.vendor.rst deleted file mode 100644 index 7bf1f37012..0000000000 --- a/news/5822.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Update pip 23.2 -> 23.2.1 diff --git a/pipenv/__version__.py b/pipenv/__version__.py index 4481ffa5d0..f854200e71 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2023.7.24.dev0" +__version__ = "2023.8.19"