Skip to content

Commit e0c1d83

Browse files
pulpbotmdellweg
authored andcommitted
Bump minor version
1 parent 0febe76 commit e0c1d83

File tree

8 files changed

+16
-15
lines changed

8 files changed

+16
-15
lines changed

.ci/assets/ci_constraints.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,8 @@ multidict!=6.3.0
1111

1212

1313
azure-storage-blob!=12.28.*
14-
# Apperently does not work with current azurite.
14+
# Apparently does not work with current azurite.
15+
16+
17+
pycares<5
18+
# older aiodns versions don't pin pycares UB, and are broken by pycares>=5

.github/workflows/update_ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
with:
7979
fetch-depth: 0
8080
path: "pulp_npm"
81-
ref: "0.4"
81+
ref: "0.5"
8282

8383
- name: "Run update"
8484
working-directory: "pulp_npm"
@@ -87,21 +87,21 @@ jobs:
8787
8888
- name: "Create Pull Request for CI files"
8989
uses: "peter-evans/create-pull-request@v6"
90-
id: "create_pr_0_4"
90+
id: "create_pr_0_5"
9191
with:
9292
token: "${{ secrets.RELEASE_TOKEN }}"
9393
path: "pulp_npm"
9494
committer: "pulpbot <pulp-infra@redhat.com>"
9595
author: "pulpbot <pulp-infra@redhat.com>"
96-
title: "Update CI files for branch 0.4"
97-
branch: "update-ci/0.4"
98-
base: "0.4"
96+
title: "Update CI files for branch 0.5"
97+
branch: "update-ci/0.5"
98+
base: "0.5"
9999
delete-branch: true
100100
- name: "Mark PR automerge"
101101
working-directory: "pulp_npm"
102102
run: |
103-
gh pr merge --rebase --auto "${{ steps.create_pr_0_4.outputs.pull-request-number }}"
104-
if: "steps.create_pr_0_4.outputs.pull-request-number"
103+
gh pr merge --rebase --auto "${{ steps.create_pr_0_5.outputs.pull-request-number }}"
104+
if: "steps.create_pr_0_5.outputs.pull-request-number"
105105
env:
106106
GH_TOKEN: "${{ secrets.RELEASE_TOKEN }}"
107107
continue-on-error: true

CHANGES/+fix-task-result.feature

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

CHANGES/+pulpcore_3_100.feature

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

CHANGES/354.bugfix

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

pulp_npm/app/__init__.py

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

77
name = "pulp_npm.app"
88
label = "npm"
9-
version = "0.5.0.dev"
9+
version = "0.6.0.dev"
1010
python_package_name = "pulp-npm"
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-npm"
10-
version = "0.5.0.dev"
10+
version = "0.6.0.dev"
1111
description = "pulp-npm plugin for the Pulp Project"
1212
readme = "README.md"
1313
authors = [
@@ -87,7 +87,7 @@ exclude = '''
8787
[tool.bumpversion]
8888
# This section is managed by the plugin template. Do not edit manually.
8989

90-
current_version = "0.5.0.dev"
90+
current_version = "0.6.0.dev"
9191
commit = false
9292
tag = false
9393
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: '0.4'
27+
latest_release_branch: '0.5'
2828
lint_requirements: true
2929
os_required_packages: []
3030
parallel_test_workers: 8

0 commit comments

Comments
 (0)