diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 05eec2a9e8..aeea464199 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,16 @@ +2023.7.4 (2023-07-04) +===================== +Pipenv 2023.7.4 (2023-07-04) +============================ + + +Bug Fixes +--------- + +- Fixes regression on Pipfile requirements syntax. Ensure default operator is provided to requirement lib to avoid crash. `#5765 `_ +- Ensure hashes included in a generated requirements file are after any markers. `#5777 `_ + + 2023.7.3 (2023-07-02) ===================== Pipenv 2023.7.3 (2023-07-02) diff --git a/news/5765.bugfix.rst b/news/5765.bugfix.rst deleted file mode 100644 index 06c57c4b47..0000000000 --- a/news/5765.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixes regression on Pipfile requirements syntax. Ensure default operator is provided to requirement lib to avoid crash. diff --git a/news/5777.bugfix.rst b/news/5777.bugfix.rst deleted file mode 100644 index 8ad522f389..0000000000 --- a/news/5777.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Ensure hashes included in a generated requirements file are after any markers. diff --git a/pipenv/__version__.py b/pipenv/__version__.py index 634899af45..8ddc87abbb 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2023.7.2.dev0" +__version__ = "2023.7.4"