diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dace463ab0..fce510a13b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,28 @@ +2023.7.23 (2023-07-23) +====================== +Pipenv 2023.7.23 (2023-07-23) +============================= + + +Features & Improvements +----------------------- + +- Upgrades ``pip==23.2`` which includes everything from the pip changelog. Drops the "install_compatatability_finder" pip internals patch. `#5808 `_ + +Bug Fixes +--------- + +- Fix issue parsing some Pipfiles with separate packages. sections (tomlkit OutOfOrderTableProxy) `#5794 `_ +- Fix all ruff linter warnings `#5807 `_ +- Restore running Resolver in sub-process using the project python by default; maintains ability to run directly by setting ``PIPENV_RESOLVER_PARENT_PYTHON`` environment variable to 1 (useful for internal debugging). `#5809 `_ +- Fix error when a Windows path begins with a '\' with ``pythonfinder==2.0.5``. `#5812 `_ + +Vendored Libraries +------------------ + +- Remove usage of click.secho in some modules. `#5804 `_ + + 2023.7.11 (2023-07-11) ====================== Pipenv 2023.7.11 (2023-07-11) diff --git a/news/5794.bugfix.rst b/news/5794.bugfix.rst deleted file mode 100644 index 3e33f9eabc..0000000000 --- a/news/5794.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix issue parsing some Pipfiles with separate packages. sections (tomlkit OutOfOrderTableProxy) diff --git a/news/5804.vendor.rst b/news/5804.vendor.rst deleted file mode 100644 index 8041931419..0000000000 --- a/news/5804.vendor.rst +++ /dev/null @@ -1 +0,0 @@ -Remove usage of click.secho in some modules. diff --git a/news/5807.bugfix.rst b/news/5807.bugfix.rst deleted file mode 100644 index 3d00999b1e..0000000000 --- a/news/5807.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ - Fix all ruff linter warnings diff --git a/news/5808.feature.rst b/news/5808.feature.rst deleted file mode 100644 index d9e28a9695..0000000000 --- a/news/5808.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Upgrades ``pip==23.2`` which includes everything from the pip changelog. Drops the "install_compatatability_finder" pip internals patch. diff --git a/news/5809.bugfix.rst b/news/5809.bugfix.rst deleted file mode 100644 index 935fc73a7c..0000000000 --- a/news/5809.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Restore running Resolver in sub-process using the project python by default; maintains ability to run directly by setting ``PIPENV_RESOLVER_PARENT_PYTHON`` environment variable to 1 (useful for internal debugging). diff --git a/news/5812.bugfix.rst b/news/5812.bugfix.rst deleted file mode 100644 index f296e1f8c6..0000000000 --- a/news/5812.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix error when a Windows path begins with a '\' with ``pythonfinder==2.0.5``. diff --git a/pipenv/__version__.py b/pipenv/__version__.py index 5edbdbd92a..5c0ce257a3 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2023.7.12.dev0" +__version__ = "2023.7.23"