Skip to content

Commit

Permalink
Release 0.10.0
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
mdellweg committed Jun 30, 2021
1 parent e0813c0 commit 110056b
Show file tree
Hide file tree
Showing 16 changed files with 42 additions and 15 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.10.0.dev
current_version = 0.10.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
39 changes: 39 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,45 @@ Changelog

.. towncrier release notes start
0.10.0 (2021-06-30)

Features
--------

- Change resource options to accept plugin and type along with the name.
`#158 <https://github.com/pulp/pulp-cli/issues/158>`_
- Added missing search options to publication list commands.
`#207 <https://github.com/pulp/pulp-cli/issues/207>`_
- Add a timeout parameter to specify the duration how long to wait for background tasks.
`#232 <https://github.com/pulp/pulp-cli/issues/232>`_
- Python remote fields --includes/--excludes can now be specified with requirements.txt files
`#240 <https://github.com/pulp/pulp-cli/issues/240>`_
- Updated RPM commands to be compatible with new 3.13 auto-publish changes
`#251 <https://github.com/pulp/pulp-cli/issues/251>`_
- Added generic content list command.
`#254 <https://github.com/pulp/pulp-cli/issues/254>`_
- Update the click dependency to 8.0.1.
`#256 <https://github.com/pulp/pulp-cli/issues/256>`_
- Added feature to bypass chunk uploading if the chunk size exceeds the file size. This speeds up the upload by about 30-40%.
`#262 <https://github.com/pulp/pulp-cli/issues/262>`_
- Added ``--cid`` option to ``task list`` command to allow fitering by correlation id.
`#269 <https://github.com/pulp/pulp-cli/issues/269>`_
- Added allow-uploads/block-uploads option to python distribution commands
`#271 <https://github.com/pulp/pulp-cli/issues/271>`_


Bugfixes
--------

- Properly report timed out tasks.
`#232 <https://github.com/pulp/pulp-cli/issues/232>`_
- Use ``find_packages`` instead of ``find_namespace_packages`` in setup to be compatible with ``setuptools<39.2.0``.
`#248 <https://github.com/pulp/pulp-cli/issues/248>`_


----


0.9.0 (2021-05-17)
==================

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/271.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.10.0.dev"
__version__ = "0.10.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.10.0.dev",
version="0.10.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 110056b

Please sign in to comment.