Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.5.0 release #160

Merged
merged 3 commits into from
Feb 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.5.0.dev
current_version = 0.6.0.dev
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
Expand Down
26 changes: 26 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,32 @@ Changelog

.. towncrier release notes start

0.5.0 (2021-02-20)
==================


Features
--------

- Made task state a choice option for pulp task list.
`#115 <https://github.com/pulp/pulp-cli/issues/115>`_
- Added support for pulp-2to3-migration.
`#133 <https://github.com/pulp/pulp-cli/issues/133>`_
- Added worker command.
`#144 <https://github.com/pulp/pulp-cli/issues/144>`_
- Added the ability to include multiple server profiles into the pulp cli config.
`#145 <https://github.com/pulp/pulp-cli/issues/145>`_


Misc
----

- `#148 <https://github.com/pulp/pulp-cli/issues/148>`_


----


0.4.0 (2021-02-10)
==================

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

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 @@ -10,7 +10,7 @@
from pulpcore.cli.common.debug import debug

_ = gettext.gettext
__version__ = "0.5.0.dev"
__version__ = "0.6.0.dev"


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