Skip to content

Commit

Permalink
Bump minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
pulpbot committed Dec 11, 2024
1 parent b13ebac commit ce25df5
Show file tree
Hide file tree
Showing 19 changed files with 14 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .github/template_gitref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2021.08.26-415-g804d8f6
unknown
14 changes: 7 additions & 7 deletions .github/workflows/update_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ jobs:
with:
fetch-depth: 0
path: "pulpcore"
ref: "3.68"
ref: "3.69"

- name: "Run update"
working-directory: "pulpcore"
Expand All @@ -242,21 +242,21 @@ jobs:
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
id: "create_pr_3_68"
id: "create_pr_3_69"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulpcore"
committer: "pulpbot <[email protected]>"
author: "pulpbot <[email protected]>"
title: "Update CI files for branch 3.68"
branch: "update-ci/3.68"
base: "3.68"
title: "Update CI files for branch 3.69"
branch: "update-ci/3.69"
base: "3.69"
delete-branch: true
- name: "Mark PR automerge"
working-directory: "pulpcore"
run: |
gh pr merge --rebase --auto "${{ steps.create_pr_3_68.outputs.pull-request-number }}"
if: "steps.create_pr_3_68.outputs.pull-request-number"
gh pr merge --rebase --auto "${{ steps.create_pr_3_69.outputs.pull-request-number }}"
if: "steps.create_pr_3_69.outputs.pull-request-number"
env:
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
continue-on-error: true
Expand Down
1 change: 0 additions & 1 deletion CHANGES/+core_in_bindings_spec.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/+created_resource_schema.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/+task_error_schema.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/1975.doc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3212.doc

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/5012.bugfix

This file was deleted.

4 changes: 0 additions & 4 deletions CHANGES/5725.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/5937.bugfix

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/6053.bugfix

This file was deleted.

7 changes: 0 additions & 7 deletions CHANGES/plugin_api/+expose-json-dict.misc

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/plugin_api/+squash_migrations.feature

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion pulp_certguard/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ class PulpCertGuardPluginAppConfig(PulpPluginAppConfig):

name = "pulp_certguard.app"
label = "certguard"
version = "3.69.0.dev"
version = "3.70.0.dev"
python_package_name = "pulpcore"
domain_compatible = True
2 changes: 1 addition & 1 deletion pulp_file/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig):

name = "pulp_file.app"
label = "file"
version = "3.69.0.dev"
version = "3.70.0.dev"
python_package_name = "pulpcore"
domain_compatible = True
2 changes: 1 addition & 1 deletion pulpcore/app/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ class PulpAppConfig(PulpPluginAppConfig):
label = "core"

# The version of this app
version = "3.69.0.dev"
version = "3.70.0.dev"

# The python package name providing this app
python_package_name = "pulpcore"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = "pulpcore"
version = "3.69.0.dev"
version = "3.70.0.dev"
description = "Pulp Django Application and Related Modules"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -206,7 +206,7 @@ ignore = [
[tool.bumpversion]
# This section is managed by the plugin template. Do not edit manually.

current_version = "3.69.0.dev"
current_version = "3.70.0.dev"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
Expand Down
2 changes: 1 addition & 1 deletion template_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ flake8: true
flake8_ignore:
- ./pulpcore/app/protobuf/*
github_org: pulp
latest_release_branch: '3.68'
latest_release_branch: '3.69'
lint_requirements: true
os_required_packages: []
parallel_test_workers: 8
Expand Down

0 comments on commit ce25df5

Please sign in to comment.