From 5e5bd54706a42fac9420de529c19ec280230cc6c Mon Sep 17 00:00:00 2001 From: pulpbot Date: Wed, 3 Jun 2026 08:31:12 +0000 Subject: [PATCH] Bump minor version --- .github/workflows/update_ci.yml | 31 ++++++++++++++++++++++++++++ CHANGES/+imp_exp_4_prep.bugfix | 3 --- CHANGES/+publish_empty_repos.feature | 1 - CHANGES/+pulpcore_3_100.feature | 1 - CHANGES/1175.feature | 1 - CHANGES/1371.feature | 1 - pulp_deb/app/__init__.py | 2 +- pyproject.toml | 4 ++-- template_config.yml | 2 +- 9 files changed, 35 insertions(+), 11 deletions(-) delete mode 100644 CHANGES/+imp_exp_4_prep.bugfix delete mode 100644 CHANGES/+publish_empty_repos.feature delete mode 100644 CHANGES/+pulpcore_3_100.feature delete mode 100644 CHANGES/1175.feature delete mode 100644 CHANGES/1371.feature diff --git a/.github/workflows/update_ci.yml b/.github/workflows/update_ci.yml index 7bd14d254..1f238f6c4 100644 --- a/.github/workflows/update_ci.yml +++ b/.github/workflows/update_ci.yml @@ -165,4 +165,35 @@ jobs: env: GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" continue-on-error: true + - uses: "actions/checkout@v6" + with: + fetch-depth: 0 + path: "pulp_deb" + ref: "3.9" + + - name: "Run update" + working-directory: "pulp_deb" + run: | + ../plugin_template/scripts/update_ci.sh --release + + - name: "Create Pull Request for CI files" + uses: "peter-evans/create-pull-request@v8" + id: "create_pr_3_9" + with: + token: "${{ secrets.RELEASE_TOKEN }}" + path: "pulp_deb" + committer: "pulpbot " + author: "pulpbot " + title: "Update CI files for branch 3.9" + branch: "update-ci/3.9" + base: "3.9" + delete-branch: true + - name: "Mark PR automerge" + working-directory: "pulp_deb" + run: | + gh pr merge --rebase --auto "${{ steps.create_pr_3_9.outputs.pull-request-number }}" + if: "steps.create_pr_3_9.outputs.pull-request-number" + env: + GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" + continue-on-error: true ... diff --git a/CHANGES/+imp_exp_4_prep.bugfix b/CHANGES/+imp_exp_4_prep.bugfix deleted file mode 100644 index 2b35ad74c..000000000 --- a/CHANGES/+imp_exp_4_prep.bugfix +++ /dev/null @@ -1,3 +0,0 @@ -Teach modelresource.render it might get a `value` of None. - -This prepares us to handle a django-import-export/4 codepath. diff --git a/CHANGES/+publish_empty_repos.feature b/CHANGES/+publish_empty_repos.feature deleted file mode 100644 index 4ff9c0f8f..000000000 --- a/CHANGES/+publish_empty_repos.feature +++ /dev/null @@ -1 +0,0 @@ -Provide minimal metadata files for empty repository versions during structured publish. diff --git a/CHANGES/+pulpcore_3_100.feature b/CHANGES/+pulpcore_3_100.feature deleted file mode 100644 index 0ae9a2ff3..000000000 --- a/CHANGES/+pulpcore_3_100.feature +++ /dev/null @@ -1 +0,0 @@ -Bump pulpcore upperbound to <3.115. diff --git a/CHANGES/1175.feature b/CHANGES/1175.feature deleted file mode 100644 index c567abf70..000000000 --- a/CHANGES/1175.feature +++ /dev/null @@ -1 +0,0 @@ -Support per-component/architecture Release files for cross-validation by related installers (i.e. ubiquity and debian-installer). \ No newline at end of file diff --git a/CHANGES/1371.feature b/CHANGES/1371.feature deleted file mode 100644 index 87129b070..000000000 --- a/CHANGES/1371.feature +++ /dev/null @@ -1 +0,0 @@ -Implement `layout` option on AptPublication that allows user to choose different cache-friendly style of deb URL. diff --git a/pulp_deb/app/__init__.py b/pulp_deb/app/__init__.py index 316b53ff0..eb5e7ae80 100644 --- a/pulp_deb/app/__init__.py +++ b/pulp_deb/app/__init__.py @@ -6,6 +6,6 @@ class PulpDebPluginAppConfig(PulpPluginAppConfig): name = "pulp_deb.app" label = "deb" - version = "3.9.0.dev" + version = "3.10.0.dev" python_package_name = "pulp_deb" domain_compatible = True diff --git a/pyproject.toml b/pyproject.toml index 4ec0d4f7e..4e35062f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta' [project] name = "pulp-deb" -version = "3.9.0.dev" +version = "3.10.0.dev" description = "pulp-deb plugin for the Pulp Project" readme = "README.md" authors = [ @@ -122,7 +122,7 @@ exclude = ''' [tool.bumpversion] # This section is managed by the plugin template. Do not edit manually. -current_version = "3.9.0.dev" +current_version = "3.10.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 db0cb73b4..d7debbaa1 100644 --- a/template_config.yml +++ b/template_config.yml @@ -22,7 +22,7 @@ disabled_redis_runners: [] docker_fixtures: true extra_files: [] github_org: "pulp" -latest_release_branch: "3.8" +latest_release_branch: "3.9" lint_ignore: [] lint_requirements: true os_required_packages: []