Skip to content

Commit 725926d

Browse files
authored
Merge pull request #1052 from pulp/minor-version-bump
Bump minor version
2 parents 5d9b7f6 + ec478fc commit 725926d

File tree

8 files changed

+11
-16
lines changed

8 files changed

+11
-16
lines changed

.github/workflows/update_ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
with:
172172
fetch-depth: 0
173173
path: "pulp_python"
174-
ref: "3.22"
174+
ref: "3.23"
175175

176176
- name: "Run update"
177177
working-directory: "pulp_python"
@@ -180,21 +180,21 @@ jobs:
180180
181181
- name: "Create Pull Request for CI files"
182182
uses: "peter-evans/create-pull-request@v6"
183-
id: "create_pr_3_22"
183+
id: "create_pr_3_23"
184184
with:
185185
token: "${{ secrets.RELEASE_TOKEN }}"
186186
path: "pulp_python"
187187
committer: "pulpbot <[email protected]>"
188188
author: "pulpbot <[email protected]>"
189-
title: "Update CI files for branch 3.22"
190-
branch: "update-ci/3.22"
191-
base: "3.22"
189+
title: "Update CI files for branch 3.23"
190+
branch: "update-ci/3.23"
191+
base: "3.23"
192192
delete-branch: true
193193
- name: "Mark PR automerge"
194194
working-directory: "pulp_python"
195195
run: |
196-
gh pr merge --rebase --auto "${{ steps.create_pr_3_22.outputs.pull-request-number }}"
197-
if: "steps.create_pr_3_22.outputs.pull-request-number"
196+
gh pr merge --rebase --auto "${{ steps.create_pr_3_23.outputs.pull-request-number }}"
197+
if: "steps.create_pr_3_23.outputs.pull-request-number"
198198
env:
199199
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
200200
continue-on-error: true

CHANGES/+provenance-filter.bugfix

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

CHANGES/+pulpcore_3_100.feature

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

CHANGES/1042.bugfix

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

CHANGES/1047.feature

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

pulp_python/app/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class PulpPythonPluginAppConfig(PulpPluginAppConfig):
1010

1111
name = "pulp_python.app"
1212
label = "python"
13-
version = "3.23.0.dev"
13+
version = "3.24.0.dev"
1414
python_package_name = "pulp-python"
1515
domain_compatible = True
1616

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 = "pulp-python"
10-
version = "3.23.0.dev"
10+
version = "3.24.0.dev"
1111
description = "pulp-python plugin for the Pulp Project"
1212
readme = "README.md"
1313
authors = [
@@ -77,7 +77,7 @@ ignore = [
7777
[tool.bumpversion]
7878
# This section is managed by the plugin template. Do not edit manually.
7979

80-
current_version = "3.23.0.dev"
80+
current_version = "3.24.0.dev"
8181
commit = false
8282
tag = false
8383
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"

template_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ extra_files: []
2424
flake8: true
2525
flake8_ignore: []
2626
github_org: pulp
27-
latest_release_branch: '3.22'
27+
latest_release_branch: '3.23'
2828
lint_requirements: true
2929
os_required_packages: []
3030
parallel_test_workers: 8

0 commit comments

Comments
 (0)