Skip to content

Commit f311c79

Browse files
authored
Merge pull request #792 from pulp/minor-version-bump
Bump minor version
2 parents f622665 + e81926b commit f311c79

13 files changed

+13
-25
lines changed

.github/template_gitref

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2021.08.26-421-g204a709
1+
unknown

.github/workflows/update_ci.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
with:
110110
fetch-depth: 0
111111
path: "pulp_python"
112-
ref: "3.12"
112+
ref: "3.13"
113113

114114
- name: "Run update"
115115
working-directory: "pulp_python"
@@ -118,21 +118,21 @@ jobs:
118118
119119
- name: "Create Pull Request for CI files"
120120
uses: "peter-evans/create-pull-request@v6"
121-
id: "create_pr_3_12"
121+
id: "create_pr_3_13"
122122
with:
123123
token: "${{ secrets.RELEASE_TOKEN }}"
124124
path: "pulp_python"
125125
committer: "pulpbot <[email protected]>"
126126
author: "pulpbot <[email protected]>"
127-
title: "Update CI files for branch 3.12"
128-
branch: "update-ci/3.12"
129-
base: "3.12"
127+
title: "Update CI files for branch 3.13"
128+
branch: "update-ci/3.13"
129+
base: "3.13"
130130
delete-branch: true
131131
- name: "Mark PR automerge"
132132
working-directory: "pulp_python"
133133
run: |
134-
gh pr merge --rebase --auto "${{ steps.create_pr_3_12.outputs.pull-request-number }}"
135-
if: "steps.create_pr_3_12.outputs.pull-request-number"
134+
gh pr merge --rebase --auto "${{ steps.create_pr_3_13.outputs.pull-request-number }}"
135+
if: "steps.create_pr_3_13.outputs.pull-request-number"
136136
env:
137137
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
138138
continue-on-error: true

CHANGES/+fix-any-type.bugfix

-2
This file was deleted.

CHANGES/+pulpcore-3.70.feature

-1
This file was deleted.

CHANGES/682.bugfix

-1
This file was deleted.

CHANGES/691.bugfix

-1
This file was deleted.

CHANGES/716.bugfix

-1
This file was deleted.

CHANGES/718.bugfix

-1
This file was deleted.

CHANGES/773.bugfix

-4
This file was deleted.

CHANGES/774.misc

-1
This file was deleted.

pulp_python/app/__init__.py

+1-1
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.13.0.dev"
13+
version = "3.14.0.dev"
1414
python_package_name = "pulp-python"
1515
domain_compatible = True
1616

pyproject.toml

+2-2
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.13.0.dev"
10+
version = "3.14.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.13.0.dev"
80+
current_version = "3.14.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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This config represents the latest values used when running the plugin-template. Any settings that
22
# were not present before running plugin-template have been added with their default values.
33

4-
# generated with plugin_template@2021.08.26-420-gf332a34
4+
# generated with plugin_template@unknown
55

66
api_root: /pulp/
77
black: false
@@ -23,7 +23,7 @@ docker_fixtures: false
2323
flake8: true
2424
flake8_ignore: []
2525
github_org: pulp
26-
latest_release_branch: '3.12'
26+
latest_release_branch: '3.13'
2727
lint_requirements: true
2828
os_required_packages: []
2929
parallel_test_workers: 8

0 commit comments

Comments
 (0)