From b53b283e2afcf8877dbcb91198ecd906aecd9f34 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 26 Aug 2026 13:27:01 +0000 Subject: [PATCH] Bump minor version --- .github/workflows/update_ci.yml | 14 +++++++------- CHANGES/1338.feature | 1 - pulp_python/app/__init__.py | 2 +- pyproject.toml | 4 ++-- template_config.yml | 2 +- 5 files changed, 11 insertions(+), 12 deletions(-) delete mode 100644 CHANGES/1338.feature diff --git a/.github/workflows/update_ci.yml b/.github/workflows/update_ci.yml index 2da349f4b..8dca6e9f1 100644 --- a/.github/workflows/update_ci.yml +++ b/.github/workflows/update_ci.yml @@ -238,7 +238,7 @@ jobs: with: fetch-depth: 0 path: "pulp_python" - ref: "3.34" + ref: "3.35" - name: "Run update" working-directory: "pulp_python" @@ -247,21 +247,21 @@ jobs: - name: "Create Pull Request for CI files" uses: "peter-evans/create-pull-request@v8" - id: "create_pr_3_34" + id: "create_pr_3_35" with: token: "${{ secrets.RELEASE_TOKEN }}" path: "pulp_python" committer: "pulpbot " author: "pulpbot " - title: "Update CI files for branch 3.34" - branch: "update-ci/3.34" - base: "3.34" + title: "Update CI files for branch 3.35" + branch: "update-ci/3.35" + base: "3.35" delete-branch: true - name: "Mark PR automerge" working-directory: "pulp_python" run: | - gh pr merge --rebase --auto "${{ steps.create_pr_3_34.outputs.pull-request-number }}" - if: "steps.create_pr_3_34.outputs.pull-request-number" + gh pr merge --rebase --auto "${{ steps.create_pr_3_35.outputs.pull-request-number }}" + if: "steps.create_pr_3_35.outputs.pull-request-number" env: GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" continue-on-error: true diff --git a/CHANGES/1338.feature b/CHANGES/1338.feature deleted file mode 100644 index 2b99e07c0..000000000 --- a/CHANGES/1338.feature +++ /dev/null @@ -1 +0,0 @@ -Added conditional request support (`Last-Modified` / `If-Modified-Since` and `ETag` / `If-None-Match`) to the Simple API and JSON Metadata API for improved cache efficiency. diff --git a/pulp_python/app/__init__.py b/pulp_python/app/__init__.py index 0b250dcfe..3b5aacc5b 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.35.0.dev" + version = "3.36.0.dev" python_package_name = "pulp-python" domain_compatible = True diff --git a/pyproject.toml b/pyproject.toml index 8482d3bea..61466e167 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta' [project] name = "pulp-python" -version = "3.35.0.dev" +version = "3.36.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.35.0.dev" +current_version = "3.36.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 49be7e01a..7c7dd2e8f 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.34" +latest_release_branch: "3.35" lint_ignore: [] lint_requirements: true os_required_packages: []