Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/update_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
with:
fetch-depth: 0
path: "pulp_npm"
ref: "0.3"
ref: "0.4"

- name: "Run update"
working-directory: "pulp_npm"
Expand All @@ -87,21 +87,21 @@ jobs:

- name: "Create Pull Request for CI files"
uses: "peter-evans/create-pull-request@v6"
id: "create_pr_0_3"
id: "create_pr_0_4"
with:
token: "${{ secrets.RELEASE_TOKEN }}"
path: "pulp_npm"
committer: "pulpbot <pulp-infra@redhat.com>"
author: "pulpbot <pulp-infra@redhat.com>"
title: "Update CI files for branch 0.3"
branch: "update-ci/0.3"
base: "0.3"
title: "Update CI files for branch 0.4"
branch: "update-ci/0.4"
base: "0.4"
delete-branch: true
- name: "Mark PR automerge"
working-directory: "pulp_npm"
run: |
gh pr merge --rebase --auto "${{ steps.create_pr_0_3.outputs.pull-request-number }}"
if: "steps.create_pr_0_3.outputs.pull-request-number"
gh pr merge --rebase --auto "${{ steps.create_pr_0_4.outputs.pull-request-number }}"
if: "steps.create_pr_0_4.outputs.pull-request-number"
env:
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
continue-on-error: true
Expand Down
1 change: 0 additions & 1 deletion CHANGES/+pytest_plugin.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/+python3-11.removal

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion pulp_npm/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ class PulpNpmPluginAppConfig(PulpPluginAppConfig):

name = "pulp_npm.app"
label = "npm"
version = "0.4.0.dev"
version = "0.5.0.dev"
python_package_name = "pulp-npm"
domain_compatible = True
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = 'setuptools.build_meta'

[project]
name = "pulp-npm"
version = "0.4.0.dev"
version = "0.5.0.dev"
description = "pulp-npm plugin for the Pulp Project"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -87,7 +87,7 @@ exclude = '''
[tool.bumpversion]
# This section is managed by the plugin template. Do not edit manually.

current_version = "0.4.0.dev"
current_version = "0.5.0.dev"
commit = false
tag = false
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<alpha>0a)?(?P<patch>\\d+)(\\.(?P<release>[a-z]+))?"
Expand Down
2 changes: 1 addition & 1 deletion template_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ extra_files: []
flake8: true
flake8_ignore: []
github_org: pulp
latest_release_branch: '0.3'
latest_release_branch: '0.4'
lint_requirements: true
os_required_packages: []
parallel_test_workers: 8
Expand Down