diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 428e610b..a64395c5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,17 @@ +2023.8.28 (2023-08-28) +====================== +Pipenv 2023.8.28 (2023-08-28) +============================= + + +Bug Fixes +--------- + +- Revert change that caused the credentials in source url issue. `#5878 `_ +- Do not treat named requirements as file installs just becacuse a match path exists; better handling of editable keyword for local file installs. + Handle additional edge cases in the setup.py ast parser logic for trying to determine local install package name. `#5885 `_ + + 2023.8.26 (2023-08-26) ====================== Pipenv 2023.8.26 (2023-08-26) diff --git a/news/5878.bugfix.rst b/news/5878.bugfix.rst deleted file mode 100644 index 78843d3c..00000000 --- a/news/5878.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Revert change that caused the credentials in source url issue. diff --git a/news/5885.bugfix.rst b/news/5885.bugfix.rst deleted file mode 100644 index 10400a2b..00000000 --- a/news/5885.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Do not treat named requirements as file installs just becacuse a match path exists; better handling of editable keyword for local file installs. -Handle additional edge cases in the setup.py ast parser logic for trying to determine local install package name. diff --git a/pipenv/__version__.py b/pipenv/__version__.py index 3d2e9a7c..7fda23a6 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2023.8.27.dev0" +__version__ = "2023.8.28"