diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b878c5e1cb..428e610b77 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,18 @@ +2023.8.26 (2023-08-26) +====================== +Pipenv 2023.8.26 (2023-08-26) +============================= + + +Bug Fixes +--------- + +- Additional property caching to avoid duplication of sources in the resolver. `#5863 `_ +- Fix recent regressions with local/editable file installs. `#5870 `_ +- Fixes the vcs subdirectory fragments regression; fixes sys_platform markers regression. `#5871 `_ +- Fix regression that caused printing non-printable ascii characters when help was called. `#5872 `_ + + 2023.8.25 (2023-08-25) ====================== Pipenv 2023.8.25 (2023-08-25) diff --git a/news/5863.bugfix.rst b/news/5863.bugfix.rst deleted file mode 100644 index 620c0db5f6..0000000000 --- a/news/5863.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Additional property caching to avoid duplication of sources in the resolver. diff --git a/news/5870.bugfix.rst b/news/5870.bugfix.rst deleted file mode 100644 index d6872c8de0..0000000000 --- a/news/5870.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix recent regressions with local/editable file installs. diff --git a/news/5871.bugfix.rst b/news/5871.bugfix.rst deleted file mode 100644 index ab0d0ea245..0000000000 --- a/news/5871.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixes the vcs subdirectory fragments regression; fixes sys_platform markers regression. diff --git a/news/5872.bugfix.rst b/news/5872.bugfix.rst deleted file mode 100644 index 94cffb2bf8..0000000000 --- a/news/5872.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix regression that caused printing non-printable ascii characters when help was called. diff --git a/pipenv/__version__.py b/pipenv/__version__.py index e0efc3a9ca..2a1cc39736 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2023.8.26.dev0" +__version__ = "2023.8.26"