From 766687f838a96ce096cb6db2b70c452e5ac14ef3 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 23 May 2024 17:22:04 +0000 Subject: [PATCH] Release 3.39.15 --- .bumpversion.cfg | 2 +- CHANGES.rst | 21 +++++++++++++++++++++ CHANGES/5375.bugfix | 1 - docs/conf.py | 4 ++-- pulpcore/app/apps.py | 2 +- setup.py | 2 +- 6 files changed, 26 insertions(+), 6 deletions(-) delete mode 100644 CHANGES/5375.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index baf556ec25..c7ae3e7c2d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.39.15.dev +current_version = 3.39.15 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index e3285b2d58..62beec299b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,27 @@ Changelog .. towncrier release notes start +3.39.15 (2024-05-23) +==================== +REST API +-------- + +Bugfixes +~~~~~~~~ + +- Added Pulp side batching to fix large exports that were failing due to changes in psycopg. + :github:`5375` + + +Plugin API +---------- + +No significant changes. + + +---- + + 3.39.14 (2024-05-16) ==================== REST API diff --git a/CHANGES/5375.bugfix b/CHANGES/5375.bugfix deleted file mode 100644 index 6d5a74d931..0000000000 --- a/CHANGES/5375.bugfix +++ /dev/null @@ -1 +0,0 @@ -Added Pulp side batching to fix large exports that were failing due to changes in psycopg. diff --git a/docs/conf.py b/docs/conf.py index d94e31c11a..fe8909753b 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -74,9 +74,9 @@ # built documents. # # The short X.Y version. -version = "3.39.15.dev" +version = "3.39.15" # The full version, including alpha/beta/rc tags. -release = "3.39.15.dev" +release = "3.39.15" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pulpcore/app/apps.py b/pulpcore/app/apps.py index d9333fc057..939284b4d5 100644 --- a/pulpcore/app/apps.py +++ b/pulpcore/app/apps.py @@ -239,7 +239,7 @@ class PulpAppConfig(PulpPluginAppConfig): label = "core" # The version of this app - version = "3.39.15.dev" + version = "3.39.15" # The python package name providing this app python_package_name = "pulpcore" diff --git a/setup.py b/setup.py index 20ac43f6af..d960024851 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="pulpcore", - version="3.39.15.dev", + version="3.39.15", description="Pulp Django Application and Related Modules", long_description=long_description, long_description_content_type="text/markdown",