Skip to content

Commit 8c06232

Browse files
authored
Merge pull request #949 from pulp/minor-version-bump
Bump minor version
2 parents 42e2833 + b8ad495 commit 8c06232

File tree

7 files changed

+14
-15
lines changed

7 files changed

+14
-15
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
towncrier build --yes --version 4.0.0.ci
3636
docs:
3737
if: "endsWith(github.base_ref, 'main')"
38-
uses: 'pulp/pulp-docs/.github/workflows/docs-ci.yml@rewrite-as-mkdocs-plugin'
38+
uses: 'pulp/pulp-docs/.github/workflows/docs-ci.yml@main'
3939
with:
40-
pulpdocs_ref: 'rewrite-as-mkdocs-plugin'
40+
pulpdocs_ref: 'main'
4141

4242
no-test:
4343
if: "!endsWith(github.base_ref, 'main')"

.github/workflows/update_ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ jobs:
202202
with:
203203
fetch-depth: 0
204204
path: "pulp_python"
205-
ref: "3.18"
205+
ref: "3.19"
206206

207207
- name: "Run update"
208208
working-directory: "pulp_python"
@@ -211,21 +211,21 @@ jobs:
211211
212212
- name: "Create Pull Request for CI files"
213213
uses: "peter-evans/create-pull-request@v6"
214-
id: "create_pr_3_18"
214+
id: "create_pr_3_19"
215215
with:
216216
token: "${{ secrets.RELEASE_TOKEN }}"
217217
path: "pulp_python"
218218
committer: "pulpbot <[email protected]>"
219219
author: "pulpbot <[email protected]>"
220-
title: "Update CI files for branch 3.18"
221-
branch: "update-ci/3.18"
222-
base: "3.18"
220+
title: "Update CI files for branch 3.19"
221+
branch: "update-ci/3.19"
222+
base: "3.19"
223223
delete-branch: true
224224
- name: "Mark PR automerge"
225225
working-directory: "pulp_python"
226226
run: |
227-
gh pr merge --rebase --auto "${{ steps.create_pr_3_18.outputs.pull-request-number }}"
228-
if: "steps.create_pr_3_18.outputs.pull-request-number"
227+
gh pr merge --rebase --auto "${{ steps.create_pr_3_19.outputs.pull-request-number }}"
228+
if: "steps.create_pr_3_19.outputs.pull-request-number"
229229
env:
230230
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
231231
continue-on-error: true

CHANGES/933.feature

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

doc_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
#
66
# For more info visit https://github.com/pulp/plugin_template
77
towncrier
8-
pulp-docs @ git+https://github.com/pulp/pulp-docs@rewrite-as-mkdocs-plugin
8+
pulp-docs @ git+https://github.com/pulp/pulp-docs@main

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

79-
current_version = "3.19.0.dev"
79+
current_version = "3.20.0.dev"
8080
commit = false
8181
tag = false
8282
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.18'
27+
latest_release_branch: '3.19'
2828
lint_requirements: true
2929
os_required_packages: []
3030
parallel_test_workers: 8

0 commit comments

Comments
 (0)