Skip to content

Commit 34729a6

Browse files
authored
Merge pull request #850 from pulp/minor-version-bump
Bump minor version
2 parents b4d3bac + b4869b2 commit 34729a6

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

.github/workflows/update_ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ jobs:
140140
with:
141141
fetch-depth: 0
142142
path: "pulp_python"
143-
ref: "3.14"
143+
ref: "3.15"
144144

145145
- name: "Run update"
146146
working-directory: "pulp_python"
@@ -149,21 +149,21 @@ jobs:
149149
150150
- name: "Create Pull Request for CI files"
151151
uses: "peter-evans/create-pull-request@v6"
152-
id: "create_pr_3_14"
152+
id: "create_pr_3_15"
153153
with:
154154
token: "${{ secrets.RELEASE_TOKEN }}"
155155
path: "pulp_python"
156156
committer: "pulpbot <[email protected]>"
157157
author: "pulpbot <[email protected]>"
158-
title: "Update CI files for branch 3.14"
159-
branch: "update-ci/3.14"
160-
base: "3.14"
158+
title: "Update CI files for branch 3.15"
159+
branch: "update-ci/3.15"
160+
base: "3.15"
161161
delete-branch: true
162162
- name: "Mark PR automerge"
163163
working-directory: "pulp_python"
164164
run: |
165-
gh pr merge --rebase --auto "${{ steps.create_pr_3_14.outputs.pull-request-number }}"
166-
if: "steps.create_pr_3_14.outputs.pull-request-number"
165+
gh pr merge --rebase --auto "${{ steps.create_pr_3_15.outputs.pull-request-number }}"
166+
if: "steps.create_pr_3_15.outputs.pull-request-number"
167167
env:
168168
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
169169
continue-on-error: true

CHANGES/805.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.15.0.dev"
13+
version = "3.16.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.15.0.dev"
10+
version = "3.16.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.15.0.dev"
80+
current_version = "3.16.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
@@ -23,7 +23,7 @@ docker_fixtures: false
2323
flake8: true
2424
flake8_ignore: []
2525
github_org: pulp
26-
latest_release_branch: '3.14'
26+
latest_release_branch: '3.15'
2727
lint_requirements: true
2828
os_required_packages: []
2929
parallel_test_workers: 8

0 commit comments

Comments
 (0)