diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9f0efd9cc..d3c6ba2ae 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0.dev +current_version = 0.6.0.dev commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index cf9bbf02d..e4f5d4da4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 `_ +- Added support for pulp-2to3-migration. + `#133 `_ +- Added worker command. + `#144 `_ +- Added the ability to include multiple server profiles into the pulp cli config. + `#145 `_ + + +Misc +---- + +- `#148 `_ + + +---- + + 0.4.0 (2021-02-10) ================== diff --git a/CHANGES/115.feature b/CHANGES/115.feature deleted file mode 100644 index 3b91e8474..000000000 --- a/CHANGES/115.feature +++ /dev/null @@ -1 +0,0 @@ -Made task state a choice option for pulp task list. diff --git a/CHANGES/133.feature b/CHANGES/133.feature deleted file mode 100644 index 6342ccb3f..000000000 --- a/CHANGES/133.feature +++ /dev/null @@ -1 +0,0 @@ -Added support for pulp-2to3-migration. diff --git a/CHANGES/144.feature b/CHANGES/144.feature deleted file mode 100644 index 4f740bd9e..000000000 --- a/CHANGES/144.feature +++ /dev/null @@ -1 +0,0 @@ -Added worker command. diff --git a/CHANGES/145.feature b/CHANGES/145.feature deleted file mode 100644 index d52f47aa6..000000000 --- a/CHANGES/145.feature +++ /dev/null @@ -1 +0,0 @@ -Added the ability to include multiple server profiles into the pulp cli config. diff --git a/CHANGES/148.misc b/CHANGES/148.misc deleted file mode 100644 index 2d1ab6ad8..000000000 --- a/CHANGES/148.misc +++ /dev/null @@ -1 +0,0 @@ -Added an URL entry to the package info. diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 06b6470f4..0716ead5a 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -10,7 +10,7 @@ from pulpcore.cli.common.debug import debug _ = gettext.gettext -__version__ = "0.5.0.dev" +__version__ = "0.6.0.dev" ############################################################################## diff --git a/setup.py b/setup.py index f00cfc60d..afe0a3f25 100644 --- a/setup.py +++ b/setup.py @@ -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",