diff --git a/.github/workflows/update_ci.yml b/.github/workflows/update_ci.yml index 3ed323d60..03a674adc 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.31" + ref: "3.32" - 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_31" + id: "create_pr_3_32" with: token: "${{ secrets.RELEASE_TOKEN }}" path: "pulp_python" committer: "pulpbot " author: "pulpbot " - title: "Update CI files for branch 3.31" - branch: "update-ci/3.31" - base: "3.31" + title: "Update CI files for branch 3.32" + branch: "update-ci/3.32" + base: "3.32" delete-branch: true - name: "Mark PR automerge" working-directory: "pulp_python" run: | - gh pr merge --rebase --auto "${{ steps.create_pr_3_31.outputs.pull-request-number }}" - if: "steps.create_pr_3_31.outputs.pull-request-number" + gh pr merge --rebase --auto "${{ steps.create_pr_3_32.outputs.pull-request-number }}" + if: "steps.create_pr_3_32.outputs.pull-request-number" env: GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}" continue-on-error: true diff --git a/CHANGES/+pulp-attestation-sync.bugfix b/CHANGES/+pulp-attestation-sync.bugfix deleted file mode 100644 index b61e1661c..000000000 --- a/CHANGES/+pulp-attestation-sync.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed provenance sync failing when syncing Pulp-created attestations that use a `Pulp User` publisher. diff --git a/CHANGES/+py-version-parsing.bugfix b/CHANGES/+py-version-parsing.bugfix deleted file mode 100644 index 2bacc34f9..000000000 --- a/CHANGES/+py-version-parsing.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug where the `python_version` field was not parsed correctly when Pulp workers had hyphens in their name. diff --git a/CHANGES/1254.feature b/CHANGES/1254.feature deleted file mode 100644 index 48ec3b1c7..000000000 --- a/CHANGES/1254.feature +++ /dev/null @@ -1 +0,0 @@ -Added server-side caching and HTTP cache headers (`Cache-Control`, `ETag`) to Simple API responses. diff --git a/pulp_python/app/__init__.py b/pulp_python/app/__init__.py index d9fa7596b..d7f741f45 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.32.0.dev" + version = "3.33.0.dev" python_package_name = "pulp-python" domain_compatible = True diff --git a/pyproject.toml b/pyproject.toml index 215ffac54..1bc67b32a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta' [project] name = "pulp-python" -version = "3.32.0.dev" +version = "3.33.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.32.0.dev" +current_version = "3.33.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 4ec79cda0..ba9ffe0cd 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.31" +latest_release_branch: "3.32" lint_ignore: [] lint_requirements: true os_required_packages: []