diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e05c11f0..1a427985 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,16 @@ +2023.7.11 (2023-07-11) +====================== +Pipenv 2023.7.11 (2023-07-11) +============================= + + +Bug Fixes +--------- + +- Invoke the resolver in the same process as pipenv rather than utilizing subprocess. `#5787 `_ +- Fix regression markers being included as None/null in requirements command. `#5788 `_ + + 2023.7.9 (2023-07-09) ===================== Pipenv 2023.7.9 (2023-07-09) diff --git a/news/5787.bugfix.rst b/news/5787.bugfix.rst deleted file mode 100644 index b3676163..00000000 --- a/news/5787.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Invoke the resolver in the same process as pipenv rather than utilizing subprocess. diff --git a/news/5788.bugfix.rst b/news/5788.bugfix.rst deleted file mode 100644 index ad676949..00000000 --- a/news/5788.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix regression markers being included as None/null in requirements command. diff --git a/pipenv/__version__.py b/pipenv/__version__.py index ae376c13..20d8654d 100644 --- a/pipenv/__version__.py +++ b/pipenv/__version__.py @@ -2,4 +2,4 @@ # // ) ) / / // ) ) //___) ) // ) ) || / / # //___/ / / / //___/ / // // / / || / / # // / / // ((____ // / / ||/ / -__version__ = "2023.7.10.dev0" +__version__ = "2023.7.11"