From 3cf56e062abeccb3423651e1216bf52ea365bf80 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Fri, 25 Sep 2026 13:26:31 +0000 Subject: [PATCH] Bump version to 0.9.0.dev --- .github/workflows/codeql.yml | 3 --- .github/workflows/nightly.yml | 6 +++++- .github/workflows/pr.yml | 6 +++++- pulp-glue-gem/pyproject.toml | 2 +- pulp-glue-gem/src/pulp_glue/gem/__init__.py | 2 +- pyproject.toml | 6 +++--- src/pulpcore/cli/gem/__init__.py | 2 +- 7 files changed, 16 insertions(+), 11 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index f6d9cee..e3be2d4 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -2,9 +2,6 @@ name: "CodeQL" on: - push: - branches: - - "main" workflow_call: defaults: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index cf39225..6c7d018 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -1,5 +1,5 @@ --- -name: "pulp-cli Nightly" +name: "Nightly" on: schedule: @@ -14,6 +14,10 @@ jobs: - "build" uses: "./.github/workflows/test.yml" codeql: + permissions: + actions: "read" + contents: "read" + security-events: "write" uses: "./.github/workflows/codeql.yml" collect_changes: uses: "./.github/workflows/collect_changes.yml" diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index f883856..6188319 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -1,5 +1,5 @@ --- -name: "pulp-cli CI" +name: "Pull Request" on: pull_request: @@ -22,6 +22,10 @@ jobs: codeql: needs: - "lint" + permissions: + actions: "read" + contents: "read" + security-events: "write" uses: "./.github/workflows/codeql.yml" check-commits: runs-on: "ubuntu-latest" diff --git a/pulp-glue-gem/pyproject.toml b/pulp-glue-gem/pyproject.toml index b8ab039..738ac0d 100644 --- a/pulp-glue-gem/pyproject.toml +++ b/pulp-glue-gem/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-glue-gem" -version = "0.8.0.dev" +version = "0.9.0.dev" description = "Version agnostic glue library to talk to pulpcore's REST API. (Gem plugin)" readme = "README.md" requires-python = ">=3.10" diff --git a/pulp-glue-gem/src/pulp_glue/gem/__init__.py b/pulp-glue-gem/src/pulp_glue/gem/__init__.py index cd1f285..976a542 100644 --- a/pulp-glue-gem/src/pulp_glue/gem/__init__.py +++ b/pulp-glue-gem/src/pulp_glue/gem/__init__.py @@ -1 +1 @@ -__version__ = "0.8.0.dev" +__version__ = "0.9.0.dev" diff --git a/pyproject.toml b/pyproject.toml index 48362e3..6e31bf7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli-gem" -version = "0.8.0.dev" +version = "0.9.0.dev" description = "Command line interface to talk to pulpcore's REST API. (Gem plugin commands)" readme = "README.md" requires-python = ">=3.10" @@ -24,7 +24,7 @@ classifiers=[ ] dependencies = [ "pulp-cli<0.41,>=0.32.4", - "pulp-glue-gem==0.8.0.dev", + "pulp-glue-gem==0.9.0.dev", ] [project.urls] @@ -139,7 +139,7 @@ ignore_missing_imports = true [tool.bumpversion] # This section is managed by the cookiecutter templates. -current_version = "0.8.0.dev" +current_version = "0.9.0.dev" commit = false tag = false parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)(\\.(?P[a-z]+))?" diff --git a/src/pulpcore/cli/gem/__init__.py b/src/pulpcore/cli/gem/__init__.py index e0cecfe..4409ae9 100644 --- a/src/pulpcore/cli/gem/__init__.py +++ b/src/pulpcore/cli/gem/__init__.py @@ -14,7 +14,7 @@ translation = get_translation(__package__) _ = translation.gettext -__version__ = "0.8.0.dev" +__version__ = "0.9.0.dev" @pulp_group(name="gem")