Skip to content

Commit b577c77

Browse files
pulpbotdralley
authored andcommitted
Bump minor version
1 parent e4487fb commit b577c77

File tree

11 files changed

+37
-45
lines changed

11 files changed

+37
-45
lines changed

.github/workflows/update_ci.yml

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,37 @@ jobs:
7474
env:
7575
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
7676
continue-on-error: true
77+
- uses: "actions/checkout@v4"
78+
with:
79+
fetch-depth: 0
80+
path: "pulpcore"
81+
ref: "3.100"
82+
83+
- name: "Run update"
84+
working-directory: "pulpcore"
85+
run: |
86+
../plugin_template/scripts/update_ci.sh --release
87+
88+
- name: "Create Pull Request for CI files"
89+
uses: "peter-evans/create-pull-request@v6"
90+
id: "create_pr_3_100"
91+
with:
92+
token: "${{ secrets.RELEASE_TOKEN }}"
93+
path: "pulpcore"
94+
committer: "pulpbot <[email protected]>"
95+
author: "pulpbot <[email protected]>"
96+
title: "Update CI files for branch 3.100"
97+
branch: "update-ci/3.100"
98+
base: "3.100"
99+
delete-branch: true
100+
- name: "Mark PR automerge"
101+
working-directory: "pulpcore"
102+
run: |
103+
gh pr merge --rebase --auto "${{ steps.create_pr_3_100.outputs.pull-request-number }}"
104+
if: "steps.create_pr_3_100.outputs.pull-request-number"
105+
env:
106+
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
107+
continue-on-error: true
77108
- uses: "actions/checkout@v4"
78109
with:
79110
fetch-depth: 0
@@ -229,35 +260,4 @@ jobs:
229260
env:
230261
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
231262
continue-on-error: true
232-
- uses: "actions/checkout@v4"
233-
with:
234-
fetch-depth: 0
235-
path: "pulpcore"
236-
ref: "3.95"
237-
238-
- name: "Run update"
239-
working-directory: "pulpcore"
240-
run: |
241-
../plugin_template/scripts/update_ci.sh --release
242-
243-
- name: "Create Pull Request for CI files"
244-
uses: "peter-evans/create-pull-request@v6"
245-
id: "create_pr_3_95"
246-
with:
247-
token: "${{ secrets.RELEASE_TOKEN }}"
248-
path: "pulpcore"
249-
committer: "pulpbot <[email protected]>"
250-
author: "pulpbot <[email protected]>"
251-
title: "Update CI files for branch 3.95"
252-
branch: "update-ci/3.95"
253-
base: "3.95"
254-
delete-branch: true
255-
- name: "Mark PR automerge"
256-
working-directory: "pulpcore"
257-
run: |
258-
gh pr merge --rebase --auto "${{ steps.create_pr_3_95.outputs.pull-request-number }}"
259-
if: "steps.create_pr_3_95.outputs.pull-request-number"
260-
env:
261-
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
262-
continue-on-error: true
263263
...

CHANGES/+improve-migration-err-msg.misc

Lines changed: 0 additions & 2 deletions
This file was deleted.

CHANGES/5324.feature

Lines changed: 0 additions & 2 deletions
This file was deleted.

CHANGES/6988.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/7157.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/plugin_api/6079.removal

Lines changed: 0 additions & 2 deletions
This file was deleted.

pulp_certguard/app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ class PulpCertGuardPluginAppConfig(PulpPluginAppConfig):
66

77
name = "pulp_certguard.app"
88
label = "certguard"
9-
version = "3.100.0.dev"
9+
version = "3.101.0.dev"
1010
python_package_name = "pulpcore"
1111
domain_compatible = True

pulp_file/app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ class PulpFilePluginAppConfig(PulpPluginAppConfig):
88

99
name = "pulp_file.app"
1010
label = "file"
11-
version = "3.100.0.dev"
11+
version = "3.101.0.dev"
1212
python_package_name = "pulpcore"
1313
domain_compatible = True

pulpcore/app/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ class PulpAppConfig(PulpPluginAppConfig):
239239
label = "core"
240240

241241
# The version of this app
242-
version = "3.100.0.dev"
242+
version = "3.101.0.dev"
243243

244244
# The python package name providing this app
245245
python_package_name = "pulpcore"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'
77

88
[project]
99
name = "pulpcore"
10-
version = "3.100.0.dev"
10+
version = "3.101.0.dev"
1111
description = "Pulp Django Application and Related Modules"
1212
readme = "README.md"
1313
authors = [
@@ -204,7 +204,7 @@ ignore = [
204204
[tool.bumpversion]
205205
# This section is managed by the plugin template. Do not edit manually.
206206

207-
current_version = "3.100.0.dev"
207+
current_version = "3.101.0.dev"
208208
commit = false
209209
tag = false
210210
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

0 commit comments

Comments
 (0)