Skip to content

Commit

Permalink
Bump minor version
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
pulpbot authored and mdellweg committed Feb 12, 2024
1 parent 2096a3e commit 0398fec
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.0.dev
current_version = 0.6.0.dev
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(1b)?(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
4 changes: 2 additions & 2 deletions .ci/ansible/Containerfile.j2
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM {{ ci_base | default("ghcr.io/pulp/pulp-ci-centos:" + pulp_container_tag) }}
FROM {{ ci_base | default(pulp_default_container) }}

# Add source directories to container
{% for item in plugins %}
Expand All @@ -11,7 +11,7 @@ ADD ./{{ item.name }} ./{{ item.name }}

RUN pip3 install
{%- if s3_test | default(false) -%}
{{ " " }}git+https://github.com/fabricio-aguiar/botocore.git@fix-100-continue
{{ " " }}git+https://github.com/gerrod3/botocore.git@fix-100-continue
{%- endif -%}
{%- for item in plugins -%}
{{ " " }}{{ item.source }}
Expand Down
2 changes: 1 addition & 1 deletion .github/template_gitref
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2021.08.26-313-g0528507
2021.08.26-315-g8ecb63d
4 changes: 1 addition & 3 deletions .github/workflows/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,7 @@ cat >> vars/main.yaml << VARSYAML
pulp_env: {}
pulp_settings: null
pulp_scheme: https
pulp_container_tag: "latest"
pulp_default_container: ghcr.io/pulp/pulp-ci-centos:latest
VARSYAML

if [ "$TEST" = "s3" ]; then
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/update_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,33 @@ jobs:
[noissue]
delete-branch: true
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_gem"
ref: "0.5"

- name: "Run update"
working-directory: "pulp_gem"
run: |
../plugin_template/scripts/update_ci.sh
- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v4"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_gem"
committer: "pulpbot <[email protected]>"
author: "pulpbot <[email protected]>"
title: "Update CI files for branch 0.5"
body: ""
branch: "update-ci/0.5"
base: "0.5"
commit-message: |
Update CI files
[noissue]
delete-branch: true
- uses: "actions/checkout@v4"
with:
fetch-depth: 0
path: "pulp_gem"
Expand Down
1 change: 0 additions & 1 deletion CHANGES/+bump_pulpcore.removal

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/209.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/216.feature

This file was deleted.

4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@
# built documents.
#
# The short X.Y version.
version = "0.5.0.dev"
version = "0.6.0.dev"
# The full version, including alpha/beta/rc tags.
release = "0.5.0.dev"
release = "0.6.0.dev"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pulp_gem/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ class PulpGemPluginAppConfig(PulpPluginAppConfig):

name = "pulp_gem.app"
label = "gem"
version = "0.5.0.dev"
version = "0.6.0.dev"
python_package_name = "pulp-gem"
domain_compatible = True
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="pulp-gem",
version="0.5.0.dev",
version="0.6.0.dev",
description="Gemfile plugin for the Pulp Project",
long_description=long_description,
license="GPLv2+",
Expand Down
5 changes: 3 additions & 2 deletions template_config.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# This config represents the latest values used when running the plugin-template. Any settings that
# were not present before running plugin-template have been added with their default values.

# generated with [email protected]312-ge121aa6
# generated with [email protected]315-g8ecb63d

api_root: /pulp/
black: true
check_commit_message: true
check_gettext: true
check_manifest: true
check_stray_pulpcore_imports: true
ci_base_image: ghcr.io/pulp/pulp-ci-centos
ci_env: {}
ci_trigger: '{pull_request: {branches: [''*'']}}'
ci_update_docs: true
Expand All @@ -28,7 +29,7 @@ flake8_ignore: []
github_org: pulp
issue_tracker: github
kanban: true
latest_release_branch: null
latest_release_branch: '0.5'
lint_requirements: true
noissue_marker: '[noissue]'
parallel_test_workers: 8
Expand Down

0 comments on commit 0398fec

Please sign in to comment.