Skip to content

Commit

Permalink
Release 0.17.0
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
mdellweg committed Feb 16, 2023
1 parent 2f7289f commit 821f587
Show file tree
Hide file tree
Showing 20 changed files with 55 additions and 20 deletions.
4 changes: 3 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.17.0.dev
current_version = 0.17.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand All @@ -14,6 +14,8 @@ values =
dev
prod

[bumpversion:file:./pulp_cli/__init__.py]

[bumpversion:file:./pulp-glue/pulp_glue/common/__init__.py]

[bumpversion:file:./pulpcore/cli/common/__init__.py]
Expand Down
1 change: 0 additions & 1 deletion CHANGES/230.feature

This file was deleted.

2 changes: 0 additions & 2 deletions CHANGES/475.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/558.misc

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/580.misc

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/597.removal

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/625.removal

This file was deleted.

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

This file was deleted.

45 changes: 45 additions & 0 deletions docs/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,51 @@

[//]: # (towncrier release notes start)

## 0.17.0 (2023-02-16)



### Features

- Updated the `--requirements` option for ansible remotes to handle both files and strings.
[#230](https://github.com/pulp/pulp-cli/issues/230)
- Made all commands referencing entities accept both the HREF and name of the resource via the same command option.
For example, users can additionally use the `--repository` option in ``repository show`` commands.
[#475](https://github.com/pulp/pulp-cli/issues/475)
- Added remove-image command to pulp_container.
[#566](https://github.com/pulp/pulp-cli/issues/566)
- Made the context layer independent of click to allow it being used like a library.
[#597](https://github.com/pulp/pulp-cli/issues/597)
- Exposed `treeinfo` as an option for `sync --skip-type` for RPM repositories.
[#614](https://github.com/pulp/pulp-cli/issues/614)
- Added the `pulp task summary` command as a replacement for `pulp debug task-summary`.
[#625](https://github.com/pulp/pulp-cli/issues/625)
- Added new client library `pulp-glue` as a spin off of the `pulp-cli`.
[#628](https://github.com/pulp/pulp-cli/issues/628)


### Bugfixes

- Deprecated `--fields` and `--exclude-fields` on `pulp ansible content list` in favor of `--[exclude-]field`.
[#602](https://github.com/pulp/pulp-cli/issues/602)


### Deprecations and Removals

- Removed `pass_*_context` helpers from context layer. They moved to generic layer in 0.15.0.
[#597](https://github.com/pulp/pulp-cli/issues/597)
- Deprecated `pulp debug task-summary` in favor of `pulp task summary`.
[#625](https://github.com/pulp/pulp-cli/issues/625)


### Misc

- [#558](https://github.com/pulp/pulp-cli/issues/558), [#580](https://github.com/pulp/pulp-cli/issues/580)


---


## 0.16.0 (2022-11-10)


Expand Down
2 changes: 1 addition & 1 deletion pulp-glue/pulp_glue/common/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.17.0.dev"
__version__ = "0.17.0"
2 changes: 1 addition & 1 deletion pulp-glue/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author="Pulp Team",
author_email="[email protected]",
url="https://github.com/pulp/pulp-cli",
version="0.17.0.dev",
version="0.17.0",
packages=plugin_packages,
package_data={"": ["py.typed"]},
python_requires=">=3.6",
Expand Down
1 change: 1 addition & 0 deletions pulp_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import click
import pkg_resources

__version__ = "0.17.0"
_main: Optional[click.Group] = None


Expand Down
2 changes: 1 addition & 1 deletion pulpcore/cli/common/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from pulpcore.cli.common.debug import debug
from pulpcore.cli.common.generic import PulpCLIContext, pulp_group

__version__ = "0.17.0.dev"
__version__ = "0.17.0"

translation = get_translation(__name__)
_ = translation.gettext
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.towncrier]
package = "pulpcore.cli.common"
package = "pulp_cli"
filename = "docs/CHANGES.md"
directory = "CHANGES/"
title_format = "## {version} ({project_date})"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
author="Pulp Team",
author_email="[email protected]",
url="https://github.com/pulp/pulp-cli",
version="0.17.0.dev",
version="0.17.0",
packages=plugin_packages + extra_packages,
package_data={"": ["py.typed", "locale/*/LC_MESSAGES/*.mo"]},
python_requires=">=3.6",
install_requires=[
"pulp-glue==0.17.0.dev",
"pulp-glue==0.17.0",
"click>=8.0.0,<9.0.0",
"PyYAML~=5.3",
"schema==0.7.5",
Expand Down

0 comments on commit 821f587

Please sign in to comment.