Skip to content

Commit 27eea09

Browse files
pulpbotdralley
authored andcommitted
Bump minor version
1 parent 05de0c3 commit 27eea09

4 files changed

Lines changed: 35 additions & 4 deletions

File tree

.github/workflows/update_ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,35 @@ jobs:
7272
env:
7373
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
7474
continue-on-error: true
75+
- uses: "actions/checkout@v6"
76+
with:
77+
fetch-depth: 0
78+
path: "pulp_rust"
79+
ref: "0.0"
80+
81+
- name: "Run update"
82+
working-directory: "pulp_rust"
83+
run: |
84+
../plugin_template/scripts/update_ci.sh --release
85+
86+
- name: "Create Pull Request for CI files"
87+
uses: "peter-evans/create-pull-request@v8"
88+
id: "create_pr_0_0"
89+
with:
90+
token: "${{ secrets.RELEASE_TOKEN }}"
91+
path: "pulp_rust"
92+
committer: "pulpbot <pulp-infra@redhat.com>"
93+
author: "pulpbot <pulp-infra@redhat.com>"
94+
title: "Update CI files for branch 0.0"
95+
branch: "update-ci/0.0"
96+
base: "0.0"
97+
delete-branch: true
98+
- name: "Mark PR automerge"
99+
working-directory: "pulp_rust"
100+
run: |
101+
gh pr merge --rebase --auto "${{ steps.create_pr_0_0.outputs.pull-request-number }}"
102+
if: "steps.create_pr_0_0.outputs.pull-request-number"
103+
env:
104+
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
105+
continue-on-error: true
75106
...

pulp_rust/app/__init__.py

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

77
name = "pulp_rust.app"
88
label = "rust"
9-
version = "0.0.0.dev"
9+
version = "0.1.0.dev"
1010
python_package_name = "pulp_rust"
1111
domain_compatible = True

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-rust"
10-
version = "0.0.0.dev"
10+
version = "0.1.0.dev"
1111
description = "pulp-rust plugin for the Pulp Project"
1212
readme = "README.md"
1313
authors = [
@@ -123,7 +123,7 @@ ignore = [
123123
[tool.bumpversion]
124124
# This section is managed by the plugin template. Do not edit manually.
125125

126-
current_version = "0.0.0.dev"
126+
current_version = "0.1.0.dev"
127127
commit = false
128128
tag = false
129129
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
@@ -26,7 +26,7 @@ extra_files: []
2626
flake8: true
2727
flake8_ignore: []
2828
github_org: "pulp"
29-
latest_release_branch: null
29+
latest_release_branch: "0.0"
3030
lint_requirements: true
3131
os_required_packages: []
3232
parallel_test_workers: 8

0 commit comments

Comments
 (0)