From fd2f671c9b698dd6217a933f884a0d0b9ca8ec09 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Fri, 7 Aug 2026 12:56:21 +0000 Subject: [PATCH] Bump minor version --- .github/workflows/update_ci.yml | 14 +++++++------- CHANGES/1270.feature | 1 - CHANGES/1277.feature | 1 - CHANGES/1302.bugfix | 1 - CHANGES/1321.feature | 1 - pulp_python/app/__init__.py | 2 +- pyproject.toml | 4 ++-- template_config.yml | 2 +- 8 files changed, 11 insertions(+), 15 deletions(-) delete mode 100644 CHANGES/1270.feature delete mode 100644 CHANGES/1277.feature delete mode 100644 CHANGES/1302.bugfix delete mode 100644 CHANGES/1321.feature diff --git a/.github/workflows/update_ci.yml b/.github/workflows/update_ci.yml index 03a674adc..eb1ac9f40 100644 --- a/.github/workflows/update_ci.yml +++ b/.github/workflows/update_ci.yml @@ -231,7 +231,7 @@ jobs: with: fetch-depth: 0 path: "pulp_python" - ref: "3.32" + ref: "3.33" - name: "Run update" working-directory: "pulp_python" @@ -240,21 +240,21 @@ jobs: - name: "Create Pull Request for CI files" uses: "peter-evans/create-pull-request@v8" - id: "create_pr_3_32" + id: "create_pr_3_33" with: token: "${{ secrets.RELEASE_TOKEN }}" path: "pulp_python" committer: "pulpbot " author: "pulpbot " - title: "Update CI files for branch 3.32" - branch: "update-ci/3.32" - base: "3.32" + title: "Update CI files for branch 3.33" + branch: "update-ci/3.33" + base: "3.33" delete-branch: true - name: "Mark PR automerge" working-directory: "pulp_python" run: | - gh pr merge --rebase --auto "${{ steps.create_pr_3_32.outputs.pull-request-number }}" - if: "steps.create_pr_3_32.outputs.pull-request-number" + gh pr merge --rebase --auto "${{ steps.create_pr_3_33.outputs.pull-request-number }}" + if: "steps.create_pr_3_33.outputs.pull-request-number" env: GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" continue-on-error: true diff --git a/CHANGES/1270.feature b/CHANGES/1270.feature deleted file mode 100644 index 53eea7d6f..000000000 --- a/CHANGES/1270.feature +++ /dev/null @@ -1 +0,0 @@ -Added yank support (PEP 592). diff --git a/CHANGES/1277.feature b/CHANGES/1277.feature deleted file mode 100644 index f01642647..000000000 --- a/CHANGES/1277.feature +++ /dev/null @@ -1 +0,0 @@ -Added `version_specifier` filter to package content API for PEP 440 version matching. diff --git a/CHANGES/1302.bugfix b/CHANGES/1302.bugfix deleted file mode 100644 index 66b0f43cf..000000000 --- a/CHANGES/1302.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed Simple API cache incorrectly serving JSON responses for HTML requests when clients used `?format=json`. diff --git a/CHANGES/1321.feature b/CHANGES/1321.feature deleted file mode 100644 index b5096ebc6..000000000 --- a/CHANGES/1321.feature +++ /dev/null @@ -1 +0,0 @@ -Added support for uploading packages with Core Metadata 2.5 via twine. diff --git a/pulp_python/app/__init__.py b/pulp_python/app/__init__.py index d7f741f45..b76fe623b 100644 --- a/pulp_python/app/__init__.py +++ b/pulp_python/app/__init__.py @@ -12,7 +12,7 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig): name = "pulp_python.app" label = "python" - version = "3.33.0.dev" + version = "3.34.0.dev" python_package_name = "pulp-python" domain_compatible = True diff --git a/pyproject.toml b/pyproject.toml index 52242f0a5..53af01787 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta' [project] name = "pulp-python" -version = "3.33.0.dev" +version = "3.34.0.dev" description = "pulp-python plugin for the Pulp Project" readme = "README.md" authors = [ @@ -79,7 +79,7 @@ ignore = [ [tool.bumpversion] # This section is managed by the plugin template. Do not edit manually. -current_version = "3.33.0.dev" +current_version = "3.34.0.dev" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P0a)?(?P\\d+)(\\.(?P[a-z]+))?" diff --git a/template_config.yml b/template_config.yml index 46f547393..5f126b5a2 100644 --- a/template_config.yml +++ b/template_config.yml @@ -22,7 +22,7 @@ disabled_redis_runners: [] docker_fixtures: false extra_files: [] github_org: "pulp" -latest_release_branch: "3.32" +latest_release_branch: "3.33" lint_ignore: [] lint_requirements: true os_required_packages: []