From dd907fdd84936df518a303b17b7c114893e80114 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 23 Jul 2026 11:04:21 +0000 Subject: [PATCH] Bump minor version --- .github/workflows/update_ci.yml | 14 +++++++------- CHANGES/+add-pulp-exceptions.feature | 1 - CHANGES/+content_serializer.feature | 1 - CHANGES/+fix_exception_init.bugfix | 1 - CHANGES/+pulpcore_3_100.feature | 1 - CHANGES/+pytest_plugin.misc | 1 - CHANGES/+python3-11.removal | 1 - CHANGES/+upload.bugfix | 1 - pulp_gem/app/__init__.py | 2 +- pyproject.toml | 4 ++-- template_config.yml | 2 +- 11 files changed, 11 insertions(+), 18 deletions(-) delete mode 100644 CHANGES/+add-pulp-exceptions.feature delete mode 100644 CHANGES/+content_serializer.feature delete mode 100644 CHANGES/+fix_exception_init.bugfix delete mode 100644 CHANGES/+pulpcore_3_100.feature delete mode 100644 CHANGES/+pytest_plugin.misc delete mode 100644 CHANGES/+python3-11.removal delete mode 100644 CHANGES/+upload.bugfix diff --git a/.github/workflows/update_ci.yml b/.github/workflows/update_ci.yml index 4e7fb1ad..4e66128f 100644 --- a/.github/workflows/update_ci.yml +++ b/.github/workflows/update_ci.yml @@ -76,7 +76,7 @@ jobs: with: fetch-depth: 0 path: "pulp_gem" - ref: "0.7" + ref: "0.8" - name: "Run update" working-directory: "pulp_gem" @@ -85,21 +85,21 @@ jobs: - name: "Create Pull Request for CI files" uses: "peter-evans/create-pull-request@v8" - id: "create_pr_0_7" + id: "create_pr_0_8" with: token: "${{ secrets.RELEASE_TOKEN }}" path: "pulp_gem" committer: "pulpbot " author: "pulpbot " - title: "Update CI files for branch 0.7" - branch: "update-ci/0.7" - base: "0.7" + title: "Update CI files for branch 0.8" + branch: "update-ci/0.8" + base: "0.8" delete-branch: true - name: "Mark PR automerge" working-directory: "pulp_gem" run: | - gh pr merge --rebase --auto "${{ steps.create_pr_0_7.outputs.pull-request-number }}" - if: "steps.create_pr_0_7.outputs.pull-request-number" + gh pr merge --rebase --auto "${{ steps.create_pr_0_8.outputs.pull-request-number }}" + if: "steps.create_pr_0_8.outputs.pull-request-number" env: GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" continue-on-error: true diff --git a/CHANGES/+add-pulp-exceptions.feature b/CHANGES/+add-pulp-exceptions.feature deleted file mode 100644 index b0fd6437..00000000 --- a/CHANGES/+add-pulp-exceptions.feature +++ /dev/null @@ -1 +0,0 @@ -Add more Pulp Exceptions. diff --git a/CHANGES/+content_serializer.feature b/CHANGES/+content_serializer.feature deleted file mode 100644 index 1c1792de..00000000 --- a/CHANGES/+content_serializer.feature +++ /dev/null @@ -1 +0,0 @@ -Added download ability to gem content. diff --git a/CHANGES/+fix_exception_init.bugfix b/CHANGES/+fix_exception_init.bugfix deleted file mode 100644 index c8a09bf6..00000000 --- a/CHANGES/+fix_exception_init.bugfix +++ /dev/null @@ -1 +0,0 @@ -Bump up pulpcore lowerbounds to 3.105 to avoid exception errors. diff --git a/CHANGES/+pulpcore_3_100.feature b/CHANGES/+pulpcore_3_100.feature deleted file mode 100644 index 0ae9a2ff..00000000 --- a/CHANGES/+pulpcore_3_100.feature +++ /dev/null @@ -1 +0,0 @@ -Bump pulpcore upperbound to <3.115. diff --git a/CHANGES/+pytest_plugin.misc b/CHANGES/+pytest_plugin.misc deleted file mode 100644 index a3a8b9db..00000000 --- a/CHANGES/+pytest_plugin.misc +++ /dev/null @@ -1 +0,0 @@ -Refactored our fixtures as a pytest plugin. diff --git a/CHANGES/+python3-11.removal b/CHANGES/+python3-11.removal deleted file mode 100644 index ce222e15..00000000 --- a/CHANGES/+python3-11.removal +++ /dev/null @@ -1 +0,0 @@ -This release drops support for Python<3.11. diff --git a/CHANGES/+upload.bugfix b/CHANGES/+upload.bugfix deleted file mode 100644 index 2541207b..00000000 --- a/CHANGES/+upload.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug where upload fails due to improperly determining deferred serialization. diff --git a/pulp_gem/app/__init__.py b/pulp_gem/app/__init__.py index 4b8397fb..def93d72 100644 --- a/pulp_gem/app/__init__.py +++ b/pulp_gem/app/__init__.py @@ -6,6 +6,6 @@ class PulpGemPluginAppConfig(PulpPluginAppConfig): name = "pulp_gem.app" label = "gem" - version = "0.8.0.dev" + version = "0.9.0.dev" python_package_name = "pulp-gem" domain_compatible = True diff --git a/pyproject.toml b/pyproject.toml index 048760c9..64f6dcc2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta' [project] name = "pulp-gem" -version = "0.8.0.dev" +version = "0.9.0.dev" description = "Gemfile plugin for the Pulp Project" readme = "README.md" authors = [ @@ -47,7 +47,7 @@ where = ["."] [tool.bumpversion] # This section is managed by the plugin template. Do not edit manually. -current_version = "0.8.0.dev" +current_version = "0.9.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 4f3b0212..ff0cd5d8 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: "0.7" +latest_release_branch: "0.8" lint_ignore: [] lint_requirements: true os_required_packages: []