From 4e0698a16f9dc845f47327d2e079efcb2cfec040 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Tue, 16 Jan 2024 22:02:27 +0000 Subject: [PATCH 01/14] Release 0.23.0 --- .bumpversion.cfg | 2 +- CHANGES/+pipx.doc | 1 - CHANGES/831.removal | 1 - CHANGES/836.doc | 1 - CHANGES/842.bugfix | 1 - CHANGES/844.feature | 1 - CHANGES/850.feature | 1 - CHANGES/852.doc | 1 - CHANGES/865.bugfix | 1 - CHANGES/pulp-glue/831.removal | 1 - CHANGES/pulp-glue/851.removal | 1 - docs/CHANGES.md | 49 +++++++++++++++++++++++++- mkdocs.yml | 2 +- pulp-glue/pulp_glue/common/__init__.py | 2 +- pulp-glue/pyproject.toml | 2 +- pulp_cli/__init__.py | 2 +- pulpcore/cli/common/__init__.py | 2 +- pyproject.toml | 4 +-- 18 files changed, 56 insertions(+), 19 deletions(-) delete mode 100644 CHANGES/+pipx.doc delete mode 100644 CHANGES/831.removal delete mode 100644 CHANGES/836.doc delete mode 100644 CHANGES/842.bugfix delete mode 100644 CHANGES/844.feature delete mode 100644 CHANGES/850.feature delete mode 100644 CHANGES/852.doc delete mode 100644 CHANGES/865.bugfix delete mode 100644 CHANGES/pulp-glue/831.removal delete mode 100644 CHANGES/pulp-glue/851.removal diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 714bbd7e9..a9794ce57 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.23.0.dev +current_version = 0.23.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES/+pipx.doc b/CHANGES/+pipx.doc deleted file mode 100644 index 67d8ed09a..000000000 --- a/CHANGES/+pipx.doc +++ /dev/null @@ -1 +0,0 @@ -Added information how to use pipx for installation. diff --git a/CHANGES/831.removal b/CHANGES/831.removal deleted file mode 100644 index 195a4d58e..000000000 --- a/CHANGES/831.removal +++ /dev/null @@ -1 +0,0 @@ -Marked option `--sqlite-metadata` on `pulp rpm repository update/create` unavailable for `pulp_rpm>=3.25.0`, as it was removed there. diff --git a/CHANGES/836.doc b/CHANGES/836.doc deleted file mode 100644 index cbbc93c6b..000000000 --- a/CHANGES/836.doc +++ /dev/null @@ -1 +0,0 @@ -Improved `Developer Material/Architecture` section by adding clarification about `pulp-glue`, version guards and `pulp_option` factory. diff --git a/CHANGES/842.bugfix b/CHANGES/842.bugfix deleted file mode 100644 index e89ae3671..000000000 --- a/CHANGES/842.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug where the filenames on uploads were not being sent. diff --git a/CHANGES/844.feature b/CHANGES/844.feature deleted file mode 100644 index 84b1614bf..000000000 --- a/CHANGES/844.feature +++ /dev/null @@ -1 +0,0 @@ -Ansible Collection upload now uses the Pulp V3 API and uploading directly to a repository with `--repository`. diff --git a/CHANGES/850.feature b/CHANGES/850.feature deleted file mode 100644 index 34335b409..000000000 --- a/CHANGES/850.feature +++ /dev/null @@ -1 +0,0 @@ -Added support for `--checksum-type` option (combination of `--package-checksum-type` and `--metadata-checksum-type`) when creating rpm publications and configuring rpm repository publish settings. diff --git a/CHANGES/852.doc b/CHANGES/852.doc deleted file mode 100644 index 26a6e1c8e..000000000 --- a/CHANGES/852.doc +++ /dev/null @@ -1 +0,0 @@ -Clarified how to handle version specifiers when testing the CLI for unreleased plugin versions (.dev). diff --git a/CHANGES/865.bugfix b/CHANGES/865.bugfix deleted file mode 100644 index 21495ab66..000000000 --- a/CHANGES/865.bugfix +++ /dev/null @@ -1 +0,0 @@ -Remove dependency on `pkg_resources` that failed some installations but is deprecated anyway. diff --git a/CHANGES/pulp-glue/831.removal b/CHANGES/pulp-glue/831.removal deleted file mode 100644 index 8602237ed..000000000 --- a/CHANGES/pulp-glue/831.removal +++ /dev/null @@ -1 +0,0 @@ -Added version restriction to prevent the use of `sqlite_metadata` attribute on Repository and Publication contexts for `pulp_rpm>=3.25.0`. diff --git a/CHANGES/pulp-glue/851.removal b/CHANGES/pulp-glue/851.removal deleted file mode 100644 index 6dc24a9fd..000000000 --- a/CHANGES/pulp-glue/851.removal +++ /dev/null @@ -1 +0,0 @@ -Adjusted to `pulp_rpm>=3.25` no longer allowing publishing repositories with md5, sha1, or sha224 checksums. diff --git a/docs/CHANGES.md b/docs/CHANGES.md index e8968b95b..129b9dd0c 100644 --- a/docs/CHANGES.md +++ b/docs/CHANGES.md @@ -10,7 +10,54 @@ [//]: # (towncrier release notes start) -## 0.22.0 (2023-12-04) +## 0.23.0 (2024-01-16) + + + +#### Features + +- Ansible Collection upload now uses the Pulp V3 API and uploading directly to a repository with `--repository`. + [#844](https://github.com/pulp/pulp-cli/issues/844) +- Added support for `--checksum-type` option (combination of `--package-checksum-type` and `--metadata-checksum-type`) when creating rpm publications and configuring rpm repository publish settings. + [#850](https://github.com/pulp/pulp-cli/issues/850) + + +#### Bugfixes + +- Fixed a bug where the filenames on uploads were not being sent. + [#842](https://github.com/pulp/pulp-cli/issues/842) +- Remove dependency on `pkg_resources` that failed some installations but is deprecated anyway. + [#865](https://github.com/pulp/pulp-cli/issues/865) + + +#### Improved Documentation + +- Improved `Developer Material/Architecture` section by adding clarification about `pulp-glue`, version guards and `pulp_option` factory. + [#836](https://github.com/pulp/pulp-cli/issues/836) +- Clarified how to handle version specifiers when testing the CLI for unreleased plugin versions (.dev). + [#852](https://github.com/pulp/pulp-cli/issues/852) +- Added information how to use pipx for installation. + + + +#### Deprecations and Removals + +- Marked option `--sqlite-metadata` on `pulp rpm repository update/create` unavailable for `pulp_rpm>=3.25.0`, as it was removed there. + [#831](https://github.com/pulp/pulp-cli/issues/831) + + +### Pulp GLUE + + +#### Deprecations and Removals + +- Added version restriction to prevent the use of `sqlite_metadata` attribute on Repository and Publication contexts for `pulp_rpm>=3.25.0`. + [#831](https://github.com/pulp/pulp-cli/issues/831) +- Adjusted to `pulp_rpm>=3.25` no longer allowing publishing repositories with md5, sha1, or sha224 checksums. + [#851](https://github.com/pulp/pulp-cli/issues/851) + + +---## 0.22.0 (2023-12-04) diff --git a/mkdocs.yml b/mkdocs.yml index f9c3a0071..2b4d6c783 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,7 +2,7 @@ site_name: Pulp CLI theme: name: readthedocs custom_dir: docs_theme - version: "0.23.0.dev" + version: "0.23.0" repo_url: https://github.com/pulp/pulp-cli edit_uri: edit/main/docs/ markdown_extensions: diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index b00993458..8b301a773 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.23.0.dev" +__version__ = "0.23.0" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index e0b48d803..195658ab9 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-glue" -version = "0.23.0.dev" +version = "0.23.0" description = "Version agnostic glue library to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index b8830bb8b..d8b4bac19 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -9,7 +9,7 @@ else: from importlib_metadata import entry_points -__version__ = "0.23.0.dev" +__version__ = "0.23.0" _main: Optional[click.Group] = None diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 9a080893e..ccfa358e2 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -18,7 +18,7 @@ from pulpcore.cli.common.debug import debug from pulpcore.cli.common.generic import PulpCLIContext, pulp_group -__version__ = "0.23.0.dev" +__version__ = "0.23.0" translation = get_translation(__package__) _ = translation.gettext diff --git a/pyproject.toml b/pyproject.toml index 6e43a81e7..d3a7814ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli" -version = "0.23.0.dev" +version = "0.23.0" description = "Command line interface to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" @@ -23,7 +23,7 @@ classifiers=[ "Typing :: Typed", ] dependencies = [ - "pulp-glue==0.23.0.dev", + "pulp-glue==0.23.0", "click>=8.0.0,<9.0.0", "PyYAML>=5.3,<6.1", "schema>=0.7.5,<0.8", From 2084c930957d1ed9ef4b5d8740c4107496894600 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Tue, 16 Jan 2024 22:02:27 +0000 Subject: [PATCH 02/14] =?UTF-8?q?Bump=20version:=200.23.0=20=E2=86=92=200.?= =?UTF-8?q?23.1.dev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- mkdocs.yml | 2 +- pulp-glue/pulp_glue/common/__init__.py | 2 +- pulp-glue/pyproject.toml | 2 +- pulp_cli/__init__.py | 2 +- pulpcore/cli/common/__init__.py | 2 +- pyproject.toml | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a9794ce57..b2335aeba 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.23.0 +current_version = 0.23.1.dev commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/mkdocs.yml b/mkdocs.yml index 2b4d6c783..22e0d9d03 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,7 +2,7 @@ site_name: Pulp CLI theme: name: readthedocs custom_dir: docs_theme - version: "0.23.0" + version: "0.23.1.dev" repo_url: https://github.com/pulp/pulp-cli edit_uri: edit/main/docs/ markdown_extensions: diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index 8b301a773..685ed4dd4 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.23.0" +__version__ = "0.23.1.dev" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index 195658ab9..f58d2c1ba 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-glue" -version = "0.23.0" +version = "0.23.1.dev" description = "Version agnostic glue library to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index d8b4bac19..8a44934b7 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -9,7 +9,7 @@ else: from importlib_metadata import entry_points -__version__ = "0.23.0" +__version__ = "0.23.1.dev" _main: Optional[click.Group] = None diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index ccfa358e2..05ca3232b 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -18,7 +18,7 @@ from pulpcore.cli.common.debug import debug from pulpcore.cli.common.generic import PulpCLIContext, pulp_group -__version__ = "0.23.0" +__version__ = "0.23.1.dev" translation = get_translation(__package__) _ = translation.gettext diff --git a/pyproject.toml b/pyproject.toml index d3a7814ac..f801f4c1b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli" -version = "0.23.0" +version = "0.23.1.dev" description = "Command line interface to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" @@ -23,7 +23,7 @@ classifiers=[ "Typing :: Typed", ] dependencies = [ - "pulp-glue==0.23.0", + "pulp-glue==0.23.1.dev", "click>=8.0.0,<9.0.0", "PyYAML>=5.3,<6.1", "schema>=0.7.5,<0.8", From 62a51f9a0c8f29e7a77d815dd6bc69431e8d5f33 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Wed, 17 Jan 2024 10:46:48 +0100 Subject: [PATCH 03/14] Fix changelog formating --- docs/CHANGES.md | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/CHANGES.md b/docs/CHANGES.md index 129b9dd0c..9d15f4aa7 100644 --- a/docs/CHANGES.md +++ b/docs/CHANGES.md @@ -37,7 +37,7 @@ - Clarified how to handle version specifiers when testing the CLI for unreleased plugin versions (.dev). [#852](https://github.com/pulp/pulp-cli/issues/852) - Added information how to use pipx for installation. - + #### Deprecations and Removals @@ -57,7 +57,10 @@ [#851](https://github.com/pulp/pulp-cli/issues/851) ----## 0.22.0 (2023-12-04) +--- + + +## 0.22.0 (2023-12-04) @@ -66,7 +69,7 @@ - Added the ability to reclaim disk space (cmd: 'pulp repository reclaim'). [#620](https://github.com/pulp/pulp-cli/issues/620) - Added ``--repo-config`` option to the rpm repository and publication. - + #### Bugfixes @@ -82,7 +85,7 @@ #### Improved Documentation - Added a version select widget to docs. - + ### Pulp GLUE @@ -93,11 +96,11 @@ - Added 'PulpGenericRepositoryContext' class to handle repository commands not available with subtypes. [#620](https://github.com/pulp/pulp-cli/issues/620) - Added ``repo_config`` option PluginRequirement checks to the ``PulpRpmRepositoryContext``and ``PulpRpmPublicationContext``. - + - Added parameter `pulp_href` to `PulpRepositoryVersionContext` and `number` to `PulpRepositoryContext.get_version_context`. - + - Use the labels api starting with `pulpcore` 3.34. - + #### Improved Documentation From 021ecd22ef5ccb4e3ba7c67808b8f52ff0dc7e76 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Wed, 17 Jan 2024 11:03:41 +0100 Subject: [PATCH 04/14] Fix changelog template [noissue] (cherry picked from commit 14f6099df62602e4943050b38d7f9f4af6c1cb08) --- .github/workflows/release.yml | 2 +- CHANGES/.TEMPLATE.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c324a2926..420f2c338 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install bump2version towncrier + pip install bump2version towncrier~=23.11.0 - name: Setup git run: | git config user.name pulpbot diff --git a/CHANGES/.TEMPLATE.md b/CHANGES/.TEMPLATE.md index 0499b945f..00bafbdc5 100644 --- a/CHANGES/.TEMPLATE.md +++ b/CHANGES/.TEMPLATE.md @@ -12,7 +12,9 @@ {% if definitions[category]['showcontent'] %} {% for text, values in sections[section][category].items() %} - {{ text }} +{% if values %} {{ values|join(',\n ') }} +{% endif %} {% endfor %} {% else %} @@ -33,3 +35,5 @@ No significant changes. {% endif %} {% endfor %} --- + + From 28c7d5f71360fc202cce2c624a667462e36f748b Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Thu, 18 Jan 2024 18:38:09 +0100 Subject: [PATCH 05/14] Fix distributing type annotations (cherry picked from commit 1adc9bde8e20358c9a207660ec40919001f041cb) --- CHANGES/+fix_py_typed.bugfix | 2 ++ CHANGES/pulp-glue/+fix_py_typed.bugfix | 2 ++ pulp-glue/pyproject.toml | 2 +- pyproject.toml | 2 +- 4 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 CHANGES/+fix_py_typed.bugfix create mode 100644 CHANGES/pulp-glue/+fix_py_typed.bugfix diff --git a/CHANGES/+fix_py_typed.bugfix b/CHANGES/+fix_py_typed.bugfix new file mode 100644 index 000000000..94b6a9cee --- /dev/null +++ b/CHANGES/+fix_py_typed.bugfix @@ -0,0 +1,2 @@ +Fixed the distribution of extra files with the package. +This should fix both type annotations as well as translations. diff --git a/CHANGES/pulp-glue/+fix_py_typed.bugfix b/CHANGES/pulp-glue/+fix_py_typed.bugfix new file mode 100644 index 000000000..94b6a9cee --- /dev/null +++ b/CHANGES/pulp-glue/+fix_py_typed.bugfix @@ -0,0 +1,2 @@ +Fixed the distribution of extra files with the package. +This should fix both type annotations as well as translations. diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index f58d2c1ba..b3bdccbf0 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -39,7 +39,7 @@ include = ["pulp_glue.*"] namespaces = true [tool.setuptools.package-data] -"*" = ["py.typed, locale/*/LC_MESSAGES/*.mo"] +"*" = ["py.typed", "locale/*/LC_MESSAGES/*.mo"] [tool.black] line-length = 100 diff --git a/pyproject.toml b/pyproject.toml index f801f4c1b..939fe0f0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,7 +59,7 @@ include = ["pulpcore.cli.*", "pulp_cli", "pytest_pulp_cli"] namespaces = true [tool.setuptools.package-data] -"*" = ["py.typed, locale/*/LC_MESSAGES/*.mo"] +"*" = ["py.typed", "locale/*/LC_MESSAGES/*.mo"] [tool.towncrier] filename = "docs/CHANGES.md" From f5f7c4f0f13af8fcda77f61cee7a38ad397738eb Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 18 Jan 2024 17:42:49 +0000 Subject: [PATCH 06/14] Release 0.23.1 --- .bumpversion.cfg | 2 +- CHANGES/+fix_py_typed.bugfix | 2 -- CHANGES/pulp-glue/+fix_py_typed.bugfix | 2 -- docs/CHANGES.md | 21 +++++++++++++++++++++ mkdocs.yml | 2 +- pulp-glue/pulp_glue/common/__init__.py | 2 +- pulp-glue/pyproject.toml | 2 +- pulp_cli/__init__.py | 2 +- pulpcore/cli/common/__init__.py | 2 +- pyproject.toml | 4 ++-- 10 files changed, 29 insertions(+), 12 deletions(-) delete mode 100644 CHANGES/+fix_py_typed.bugfix delete mode 100644 CHANGES/pulp-glue/+fix_py_typed.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b2335aeba..264d257f0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.23.1.dev +current_version = 0.23.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES/+fix_py_typed.bugfix b/CHANGES/+fix_py_typed.bugfix deleted file mode 100644 index 94b6a9cee..000000000 --- a/CHANGES/+fix_py_typed.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed the distribution of extra files with the package. -This should fix both type annotations as well as translations. diff --git a/CHANGES/pulp-glue/+fix_py_typed.bugfix b/CHANGES/pulp-glue/+fix_py_typed.bugfix deleted file mode 100644 index 94b6a9cee..000000000 --- a/CHANGES/pulp-glue/+fix_py_typed.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Fixed the distribution of extra files with the package. -This should fix both type annotations as well as translations. diff --git a/docs/CHANGES.md b/docs/CHANGES.md index 9d15f4aa7..35397f863 100644 --- a/docs/CHANGES.md +++ b/docs/CHANGES.md @@ -10,6 +10,27 @@ [//]: # (towncrier release notes start) +## 0.23.1 (2024-01-18) + + + +#### Bugfixes + +- Fixed the distribution of extra files with the package. + This should fix both type annotations as well as translations. + + +### Pulp GLUE + + +#### Bugfixes + +- Fixed the distribution of extra files with the package. + This should fix both type annotations as well as translations. + + +--- + ## 0.23.0 (2024-01-16) diff --git a/mkdocs.yml b/mkdocs.yml index 22e0d9d03..ae931427f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,7 +2,7 @@ site_name: Pulp CLI theme: name: readthedocs custom_dir: docs_theme - version: "0.23.1.dev" + version: "0.23.1" repo_url: https://github.com/pulp/pulp-cli edit_uri: edit/main/docs/ markdown_extensions: diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index 685ed4dd4..43e16f5d2 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.23.1.dev" +__version__ = "0.23.1" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index b3bdccbf0..65c99a6e2 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-glue" -version = "0.23.1.dev" +version = "0.23.1" description = "Version agnostic glue library to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index 8a44934b7..0737988db 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -9,7 +9,7 @@ else: from importlib_metadata import entry_points -__version__ = "0.23.1.dev" +__version__ = "0.23.1" _main: Optional[click.Group] = None diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 05ca3232b..1d3a2eb71 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -18,7 +18,7 @@ from pulpcore.cli.common.debug import debug from pulpcore.cli.common.generic import PulpCLIContext, pulp_group -__version__ = "0.23.1.dev" +__version__ = "0.23.1" translation = get_translation(__package__) _ = translation.gettext diff --git a/pyproject.toml b/pyproject.toml index 939fe0f0b..ec2805c86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli" -version = "0.23.1.dev" +version = "0.23.1" description = "Command line interface to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" @@ -23,7 +23,7 @@ classifiers=[ "Typing :: Typed", ] dependencies = [ - "pulp-glue==0.23.1.dev", + "pulp-glue==0.23.1", "click>=8.0.0,<9.0.0", "PyYAML>=5.3,<6.1", "schema>=0.7.5,<0.8", From 7b0eaa0d0f0d4bc9166d5ae5ae0357b819b6f83d Mon Sep 17 00:00:00 2001 From: pulpbot Date: Thu, 18 Jan 2024 17:42:49 +0000 Subject: [PATCH 07/14] =?UTF-8?q?Bump=20version:=200.23.1=20=E2=86=92=200.?= =?UTF-8?q?23.2.dev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- mkdocs.yml | 2 +- pulp-glue/pulp_glue/common/__init__.py | 2 +- pulp-glue/pyproject.toml | 2 +- pulp_cli/__init__.py | 2 +- pulpcore/cli/common/__init__.py | 2 +- pyproject.toml | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 264d257f0..700316371 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.23.1 +current_version = 0.23.2.dev commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/mkdocs.yml b/mkdocs.yml index ae931427f..3f21d0853 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,7 +2,7 @@ site_name: Pulp CLI theme: name: readthedocs custom_dir: docs_theme - version: "0.23.1" + version: "0.23.2.dev" repo_url: https://github.com/pulp/pulp-cli edit_uri: edit/main/docs/ markdown_extensions: diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index 43e16f5d2..81ac6fd37 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.23.1" +__version__ = "0.23.2.dev" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index 65c99a6e2..2cc571b46 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-glue" -version = "0.23.1" +version = "0.23.2.dev" description = "Version agnostic glue library to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index 0737988db..7ad61f77c 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -9,7 +9,7 @@ else: from importlib_metadata import entry_points -__version__ = "0.23.1" +__version__ = "0.23.2.dev" _main: Optional[click.Group] = None diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 1d3a2eb71..63ed0502b 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -18,7 +18,7 @@ from pulpcore.cli.common.debug import debug from pulpcore.cli.common.generic import PulpCLIContext, pulp_group -__version__ = "0.23.1" +__version__ = "0.23.2.dev" translation = get_translation(__package__) _ = translation.gettext diff --git a/pyproject.toml b/pyproject.toml index ec2805c86..6fcf5bcef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli" -version = "0.23.1" +version = "0.23.2.dev" description = "Command line interface to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" @@ -23,7 +23,7 @@ classifiers=[ "Typing :: Typed", ] dependencies = [ - "pulp-glue==0.23.1", + "pulp-glue==0.23.2.dev", "click>=8.0.0,<9.0.0", "PyYAML>=5.3,<6.1", "schema>=0.7.5,<0.8", From a6b67ec779ddecbbf1c88dc27da2b8cca3fde8b4 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Mon, 22 Jan 2024 13:58:10 +0100 Subject: [PATCH 08/14] Let get_translation accept any python path In 0.23 a regression was introduced that forced the use of `get_translation(__package__)` instead of `get_translation(__name__`). This change adds a fallback to allow the old style alongside. It may however be removed in the future. Fixes #874 (cherry picked from commit 197c548ad05e96fd57915b8261dbff3557d48f81) --- CHANGES/874.bugfix | 1 + pulp-glue/pulp_glue/common/i18n.py | 10 ++++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 CHANGES/874.bugfix diff --git a/CHANGES/874.bugfix b/CHANGES/874.bugfix new file mode 100644 index 000000000..6c30938d3 --- /dev/null +++ b/CHANGES/874.bugfix @@ -0,0 +1 @@ +Fixed a regression introduced in `get_translations`. diff --git a/pulp-glue/pulp_glue/common/i18n.py b/pulp-glue/pulp_glue/common/i18n.py index fe845f388..3cd47e454 100644 --- a/pulp-glue/pulp_glue/common/i18n.py +++ b/pulp-glue/pulp_glue/common/i18n.py @@ -29,5 +29,11 @@ def get_translation(name: str) -> gettext.NullTranslations: _ = translation.gettext ``` """ - localedir = files(name) / "locale" - return gettext.translation("messages", localedir=str(localedir), fallback=True) + name_parts = name.split(".") + while name_parts: + try: + localedir = files(".".join(name_parts)) / "locale" + return gettext.translation("messages", localedir=str(localedir), fallback=True) + except TypeError: + name_parts.pop() + raise TypeError(f"No package found for {name}.") From d687ac0e1f1e707fd724f6d42953444026d359ee Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 22 Jan 2024 13:42:50 +0000 Subject: [PATCH 09/14] Release 0.23.2 --- .bumpversion.cfg | 2 +- CHANGES/874.bugfix | 1 - docs/CHANGES.md | 18 ++++++++++++++++++ mkdocs.yml | 2 +- pulp-glue/pulp_glue/common/__init__.py | 2 +- pulp-glue/pyproject.toml | 2 +- pulp_cli/__init__.py | 2 +- pulpcore/cli/common/__init__.py | 2 +- pyproject.toml | 4 ++-- 9 files changed, 26 insertions(+), 9 deletions(-) delete mode 100644 CHANGES/874.bugfix diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 700316371..f5d21660b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.23.2.dev +current_version = 0.23.2 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES/874.bugfix b/CHANGES/874.bugfix deleted file mode 100644 index 6c30938d3..000000000 --- a/CHANGES/874.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a regression introduced in `get_translations`. diff --git a/docs/CHANGES.md b/docs/CHANGES.md index 35397f863..eee889efc 100644 --- a/docs/CHANGES.md +++ b/docs/CHANGES.md @@ -10,6 +10,24 @@ [//]: # (towncrier release notes start) +## 0.23.2 (2024-01-22) + + + +#### Bugfixes + +- Fixed a regression introduced in `get_translations`. + [#874](https://github.com/pulp/pulp-cli/issues/874) + + +### Pulp GLUE + + +No significant changes. + + +--- + ## 0.23.1 (2024-01-18) diff --git a/mkdocs.yml b/mkdocs.yml index 3f21d0853..afa120b51 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,7 +2,7 @@ site_name: Pulp CLI theme: name: readthedocs custom_dir: docs_theme - version: "0.23.2.dev" + version: "0.23.2" repo_url: https://github.com/pulp/pulp-cli edit_uri: edit/main/docs/ markdown_extensions: diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index 81ac6fd37..4709f8be4 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.23.2.dev" +__version__ = "0.23.2" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index 2cc571b46..aed6e56e9 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-glue" -version = "0.23.2.dev" +version = "0.23.2" description = "Version agnostic glue library to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index 7ad61f77c..66d8d2306 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -9,7 +9,7 @@ else: from importlib_metadata import entry_points -__version__ = "0.23.2.dev" +__version__ = "0.23.2" _main: Optional[click.Group] = None diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 63ed0502b..f095b3954 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -18,7 +18,7 @@ from pulpcore.cli.common.debug import debug from pulpcore.cli.common.generic import PulpCLIContext, pulp_group -__version__ = "0.23.2.dev" +__version__ = "0.23.2" translation = get_translation(__package__) _ = translation.gettext diff --git a/pyproject.toml b/pyproject.toml index 6fcf5bcef..d26946534 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli" -version = "0.23.2.dev" +version = "0.23.2" description = "Command line interface to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" @@ -23,7 +23,7 @@ classifiers=[ "Typing :: Typed", ] dependencies = [ - "pulp-glue==0.23.2.dev", + "pulp-glue==0.23.2", "click>=8.0.0,<9.0.0", "PyYAML>=5.3,<6.1", "schema>=0.7.5,<0.8", From 3d2a84b36fc5a7e00ad49fed96b8930a0b9b891b Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 22 Jan 2024 13:42:50 +0000 Subject: [PATCH 10/14] =?UTF-8?q?Bump=20version:=200.23.2=20=E2=86=92=200.?= =?UTF-8?q?23.3.dev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- mkdocs.yml | 2 +- pulp-glue/pulp_glue/common/__init__.py | 2 +- pulp-glue/pyproject.toml | 2 +- pulp_cli/__init__.py | 2 +- pulpcore/cli/common/__init__.py | 2 +- pyproject.toml | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f5d21660b..37b11026e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.23.2 +current_version = 0.23.3.dev commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/mkdocs.yml b/mkdocs.yml index afa120b51..c317ae1d9 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,7 +2,7 @@ site_name: Pulp CLI theme: name: readthedocs custom_dir: docs_theme - version: "0.23.2" + version: "0.23.3.dev" repo_url: https://github.com/pulp/pulp-cli edit_uri: edit/main/docs/ markdown_extensions: diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index 4709f8be4..b8780da0a 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.23.2" +__version__ = "0.23.3.dev" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index aed6e56e9..7278815ab 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-glue" -version = "0.23.2" +version = "0.23.3.dev" description = "Version agnostic glue library to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index 66d8d2306..ea415688d 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -9,7 +9,7 @@ else: from importlib_metadata import entry_points -__version__ = "0.23.2" +__version__ = "0.23.3.dev" _main: Optional[click.Group] = None diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index f095b3954..787d0f30c 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -18,7 +18,7 @@ from pulpcore.cli.common.debug import debug from pulpcore.cli.common.generic import PulpCLIContext, pulp_group -__version__ = "0.23.2" +__version__ = "0.23.3.dev" translation = get_translation(__package__) _ = translation.gettext diff --git a/pyproject.toml b/pyproject.toml index d26946534..1e6a9331d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli" -version = "0.23.2" +version = "0.23.3.dev" description = "Command line interface to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" @@ -23,7 +23,7 @@ classifiers=[ "Typing :: Typed", ] dependencies = [ - "pulp-glue==0.23.2", + "pulp-glue==0.23.3.dev", "click>=8.0.0,<9.0.0", "PyYAML>=5.3,<6.1", "schema>=0.7.5,<0.8", From 30153207654c37c5db8134cdd065e44cd6dc882b Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Fri, 26 Apr 2024 12:42:08 +0200 Subject: [PATCH 11/14] Add missing py.typed marker [noissue] --- pulp_cli/py.typed | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 pulp_cli/py.typed diff --git a/pulp_cli/py.typed b/pulp_cli/py.typed new file mode 100644 index 000000000..e69de29bb From 620b237e3a99b23158cc4332c94faafc701dcdea Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Wed, 29 Jan 2025 15:14:36 +0100 Subject: [PATCH 12/14] Pinned packaging according to its Calver nature (cherry picked from commit 83ee5a34987e3b1f4448bb83d22f0d77fb157538) (cherry picked from commit eeac0f7fde90c0c23376477a0a42cab6c91f482f) (cherry picked from commit 9bfd7257a147e6c42dce25e9cb07176e83480733) (cherry picked from commit f28cb22180d1e3dbedc76a51ccf5915488f7c696) (cherry picked from commit 2243dd50ceb91fb92409dcd28823f82684883eae) --- CHANGES/1125.misc | 1 + CHANGES/pulp-glue/1125.misc | 1 + pulp-glue/pyproject.toml | 4 ++-- pyproject.toml | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 CHANGES/1125.misc create mode 100644 CHANGES/pulp-glue/1125.misc diff --git a/CHANGES/1125.misc b/CHANGES/1125.misc new file mode 100644 index 000000000..6ca8c7b14 --- /dev/null +++ b/CHANGES/1125.misc @@ -0,0 +1 @@ +Changed the upper version bound of `packaging` to the last available version according to CalVer. diff --git a/CHANGES/pulp-glue/1125.misc b/CHANGES/pulp-glue/1125.misc new file mode 100644 index 000000000..6ca8c7b14 --- /dev/null +++ b/CHANGES/pulp-glue/1125.misc @@ -0,0 +1 @@ +Changed the upper version bound of `packaging` to the last available version according to CalVer. diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index 7278815ab..53d829b7a 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -23,9 +23,9 @@ classifiers = [ "Typing :: Typed", ] dependencies = [ - "packaging>=20.0,<24", - "requests>=2.24.0,<2.32", "importlib_resources>=5.4,<6.2;python_version<'3.9'", + "packaging>=20.0,<=24.2", # CalVer + "requests>=2.24.0,<2.32", ] [project.urls] diff --git a/pyproject.toml b/pyproject.toml index 1e6a9331d..ed48d04bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ classifiers=[ dependencies = [ "pulp-glue==0.23.3.dev", "click>=8.0.0,<9.0.0", + "packaging>=20.0,<=24.2", # CalVer "PyYAML>=5.3,<6.1", "schema>=0.7.5,<0.8", "toml>=0.10.2,<0.11", From f56371ea293abedece3565b7ce00fe80e806388a Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 31 Mar 2025 15:03:08 +0000 Subject: [PATCH 13/14] Release 0.23.3 --- .bumpversion.cfg | 2 +- CHANGES/1125.misc | 1 - CHANGES/pulp-glue/1125.misc | 1 - docs/CHANGES.md | 19 +++++++++++++++++++ mkdocs.yml | 2 +- pulp-glue/pulp_glue/common/__init__.py | 2 +- pulp-glue/pyproject.toml | 2 +- pulp_cli/__init__.py | 2 +- pulpcore/cli/common/__init__.py | 2 +- pyproject.toml | 4 ++-- 10 files changed, 27 insertions(+), 10 deletions(-) delete mode 100644 CHANGES/1125.misc delete mode 100644 CHANGES/pulp-glue/1125.misc diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 37b11026e..65bf36c5f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.23.3.dev +current_version = 0.23.3 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES/1125.misc b/CHANGES/1125.misc deleted file mode 100644 index 6ca8c7b14..000000000 --- a/CHANGES/1125.misc +++ /dev/null @@ -1 +0,0 @@ -Changed the upper version bound of `packaging` to the last available version according to CalVer. diff --git a/CHANGES/pulp-glue/1125.misc b/CHANGES/pulp-glue/1125.misc deleted file mode 100644 index 6ca8c7b14..000000000 --- a/CHANGES/pulp-glue/1125.misc +++ /dev/null @@ -1 +0,0 @@ -Changed the upper version bound of `packaging` to the last available version according to CalVer. diff --git a/docs/CHANGES.md b/docs/CHANGES.md index eee889efc..49f8e1725 100644 --- a/docs/CHANGES.md +++ b/docs/CHANGES.md @@ -10,6 +10,25 @@ [//]: # (towncrier release notes start) +## 0.23.3 (2025-03-31) + + + +#### Misc + +- [#1125](https://github.com/pulp/pulp-cli/issues/1125) + + +### Pulp GLUE + + +#### Misc + +- [#1125](https://github.com/pulp/pulp-cli/issues/1125) + + +--- + ## 0.23.2 (2024-01-22) diff --git a/mkdocs.yml b/mkdocs.yml index c317ae1d9..34cf37257 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,7 +2,7 @@ site_name: Pulp CLI theme: name: readthedocs custom_dir: docs_theme - version: "0.23.3.dev" + version: "0.23.3" repo_url: https://github.com/pulp/pulp-cli edit_uri: edit/main/docs/ markdown_extensions: diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index b8780da0a..8f557d235 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.23.3.dev" +__version__ = "0.23.3" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index 53d829b7a..3cf272b4c 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-glue" -version = "0.23.3.dev" +version = "0.23.3" description = "Version agnostic glue library to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index ea415688d..5f415f522 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -9,7 +9,7 @@ else: from importlib_metadata import entry_points -__version__ = "0.23.3.dev" +__version__ = "0.23.3" _main: Optional[click.Group] = None diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 787d0f30c..062a7a967 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -18,7 +18,7 @@ from pulpcore.cli.common.debug import debug from pulpcore.cli.common.generic import PulpCLIContext, pulp_group -__version__ = "0.23.3.dev" +__version__ = "0.23.3" translation = get_translation(__package__) _ = translation.gettext diff --git a/pyproject.toml b/pyproject.toml index ed48d04bc..ef7b9a0d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli" -version = "0.23.3.dev" +version = "0.23.3" description = "Command line interface to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" @@ -23,7 +23,7 @@ classifiers=[ "Typing :: Typed", ] dependencies = [ - "pulp-glue==0.23.3.dev", + "pulp-glue==0.23.3", "click>=8.0.0,<9.0.0", "packaging>=20.0,<=24.2", # CalVer "PyYAML>=5.3,<6.1", From 5e3c124fe2f4e2ea1d93b32bb0db5b871ecf5778 Mon Sep 17 00:00:00 2001 From: pulpbot Date: Mon, 31 Mar 2025 15:03:08 +0000 Subject: [PATCH 14/14] =?UTF-8?q?Bump=20version:=200.23.3=20=E2=86=92=200.?= =?UTF-8?q?23.4.dev?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- mkdocs.yml | 2 +- pulp-glue/pulp_glue/common/__init__.py | 2 +- pulp-glue/pyproject.toml | 2 +- pulp_cli/__init__.py | 2 +- pulpcore/cli/common/__init__.py | 2 +- pyproject.toml | 4 ++-- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 65bf36c5f..6f672e960 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.23.3 +current_version = 0.23.4.dev commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/mkdocs.yml b/mkdocs.yml index 34cf37257..a9bf7f368 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -2,7 +2,7 @@ site_name: Pulp CLI theme: name: readthedocs custom_dir: docs_theme - version: "0.23.3" + version: "0.23.4.dev" repo_url: https://github.com/pulp/pulp-cli edit_uri: edit/main/docs/ markdown_extensions: diff --git a/pulp-glue/pulp_glue/common/__init__.py b/pulp-glue/pulp_glue/common/__init__.py index 8f557d235..b3c47058a 100644 --- a/pulp-glue/pulp_glue/common/__init__.py +++ b/pulp-glue/pulp_glue/common/__init__.py @@ -1 +1 @@ -__version__ = "0.23.3" +__version__ = "0.23.4.dev" diff --git a/pulp-glue/pyproject.toml b/pulp-glue/pyproject.toml index 3cf272b4c..f20d7ad7e 100644 --- a/pulp-glue/pyproject.toml +++ b/pulp-glue/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-glue" -version = "0.23.3" +version = "0.23.4.dev" description = "Version agnostic glue library to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" diff --git a/pulp_cli/__init__.py b/pulp_cli/__init__.py index 5f415f522..e364456df 100644 --- a/pulp_cli/__init__.py +++ b/pulp_cli/__init__.py @@ -9,7 +9,7 @@ else: from importlib_metadata import entry_points -__version__ = "0.23.3" +__version__ = "0.23.4.dev" _main: Optional[click.Group] = None diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 062a7a967..97d90e6c4 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -18,7 +18,7 @@ from pulpcore.cli.common.debug import debug from pulpcore.cli.common.generic import PulpCLIContext, pulp_group -__version__ = "0.23.3" +__version__ = "0.23.4.dev" translation = get_translation(__package__) _ = translation.gettext diff --git a/pyproject.toml b/pyproject.toml index ef7b9a0d3..a6138ce6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pulp-cli" -version = "0.23.3" +version = "0.23.4.dev" description = "Command line interface to talk to pulpcore's REST API." readme = "README.md" requires-python = ">=3.6" @@ -23,7 +23,7 @@ classifiers=[ "Typing :: Typed", ] dependencies = [ - "pulp-glue==0.23.3", + "pulp-glue==0.23.4.dev", "click>=8.0.0,<9.0.0", "packaging>=20.0,<=24.2", # CalVer "PyYAML>=5.3,<6.1",