Skip to content

Commit

Permalink
Release 0.11.0
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
mdellweg committed Aug 10, 2021
1 parent bdb9a8c commit c58042e
Show file tree
Hide file tree
Showing 17 changed files with 44 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.0.dev
current_version = 0.11.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
41 changes: 41 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,47 @@ Changelog

.. towncrier release notes start
0.11.0 (2021-08-10)

Features
--------

- Added support to specify skip-types on rpm sync.
`#225 <https://github.com/pulp/pulp-cli/issues/225>`_
- Added lookup for a global config file ``/etc/pulp/cli.toml``.
`#290 <https://github.com/pulp/pulp-cli/issues/290>`_
- Changed default config location to ``<app-dir>/cli.toml``. The old file will still be read.
`#293 <https://github.com/pulp/pulp-cli/issues/293>`_
- Enable exports for ansible repositories.
`#302 <https://github.com/pulp/pulp-cli/issues/302>`_
- Added --sles-auth-token to rpm remote commands.
`#305 <https://github.com/pulp/pulp-cli/issues/305>`_
- Added ansible content list command.
`#327 <https://github.com/pulp/pulp-cli/issues/327>`_


Bugfixes
--------

- Added validation to some json input parameters.
`#255 <https://github.com/pulp/pulp-cli/issues/255>`_
- Fixed a bug in the docs publishing workflow.
`#286 <https://github.com/pulp/pulp-cli/issues/286>`_
- Unconditionally add the fake not namespaced pulp_cli to the distribution on pypi to make it able to be consumed by setuptools<40.
`#287 <https://github.com/pulp/pulp-cli/issues/287>`_
- Deprecate orphans delete command in favor of orphan cleanup and use new rest interface on pulpcore>=3.14.
`#297 <https://github.com/pulp/pulp-cli/issues/297>`_
- Changed the name of retained-versions to retain-repo-versions.
`#298 <https://github.com/pulp/pulp-cli/issues/298>`_
- Improved a confusing error message around pulp components.
`#299 <https://github.com/pulp/pulp-cli/issues/299>`_
- Added minimum of 1 to `--limit` option.
`#311 <https://github.com/pulp/pulp-cli/issues/311>`_


----


0.10.1 (2021-06-30)

Bugfixes
Expand Down
1 change: 0 additions & 1 deletion CHANGES/225.feature

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

_ = gettext.gettext
__version__ = "0.11.0.dev"
__version__ = "0.11.0"


##############################################################################
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pulp/pulp-cli",
version="0.11.0.dev",
version="0.11.0",
packages=plugin_packages + extra_packages,
package_data={package: ["py.typed"] for package in plugin_packages},
python_requires=">=3.6",
Expand Down

0 comments on commit c58042e

Please sign in to comment.