diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a6fd8268..f3699a71 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.10.1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 5cb0c055..ee04d0c9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,20 @@ Changelog .. towncrier release notes start +0.10.1 (2021-06-30) + +Bugfixes +-------- + +- Fixed a bug in the docs publishing workflow. + `#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 `_ + + +---- + + 0.10.0 (2021-06-30) Features diff --git a/CHANGES/286.bugfix b/CHANGES/286.bugfix deleted file mode 100644 index 164537a4..00000000 --- a/CHANGES/286.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug in the docs publishing workflow. diff --git a/CHANGES/287.bugfix b/CHANGES/287.bugfix deleted file mode 100644 index 123e60ae..00000000 --- a/CHANGES/287.bugfix +++ /dev/null @@ -1 +0,0 @@ -Unconditionally add the fake not namespaced pulp_cli to the distribution on pypi to make it able to be consumed by setuptools<40. diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 4195044f..8f92310f 100644 --- a/pulpcore/cli/common/__init__.py +++ b/pulpcore/cli/common/__init__.py @@ -19,7 +19,7 @@ from pulpcore.cli.common.debug import debug _ = gettext.gettext -__version__ = "0.10.0" +__version__ = "0.10.1" ############################################################################## diff --git a/setup.py b/setup.py index 5fadd221..b48aa657 100644 --- a/setup.py +++ b/setup.py @@ -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", + version="0.10.1", packages=plugin_packages + extra_packages, package_data={package: ["py.typed"] for package in plugin_packages}, python_requires=">=3.6",