diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3efcc6e5d..9ac75c438 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.0.dev +current_version = 0.11.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index ee04d0c91..c360a22fb 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 `_ +- Added lookup for a global config file ``/etc/pulp/cli.toml``. + `#290 `_ +- Changed default config location to ``/cli.toml``. The old file will still be read. + `#293 `_ +- Enable exports for ansible repositories. + `#302 `_ +- Added --sles-auth-token to rpm remote commands. + `#305 `_ +- Added ansible content list command. + `#327 `_ + + +Bugfixes +-------- + +- Added validation to some json input parameters. + `#255 `_ +- 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 `_ +- Deprecate orphans delete command in favor of orphan cleanup and use new rest interface on pulpcore>=3.14. + `#297 `_ +- Changed the name of retained-versions to retain-repo-versions. + `#298 `_ +- Improved a confusing error message around pulp components. + `#299 `_ +- Added minimum of 1 to `--limit` option. + `#311 `_ + + +---- + + 0.10.1 (2021-06-30) Bugfixes diff --git a/CHANGES/225.feature b/CHANGES/225.feature deleted file mode 100644 index 146a846c7..000000000 --- a/CHANGES/225.feature +++ /dev/null @@ -1 +0,0 @@ -Added support to specify skip-types on rpm sync. diff --git a/CHANGES/255.bugfix b/CHANGES/255.bugfix deleted file mode 100644 index c264e8d12..000000000 --- a/CHANGES/255.bugfix +++ /dev/null @@ -1 +0,0 @@ -Added validation to some json input parameters. diff --git a/CHANGES/286.bugfix b/CHANGES/286.bugfix deleted file mode 100644 index 164537a40..000000000 --- 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 123e60ae5..000000000 --- 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/CHANGES/290.feature b/CHANGES/290.feature deleted file mode 100644 index f881e0e2e..000000000 --- a/CHANGES/290.feature +++ /dev/null @@ -1 +0,0 @@ -Added lookup for a global config file ``/etc/pulp/cli.toml``. diff --git a/CHANGES/293.feature b/CHANGES/293.feature deleted file mode 100644 index 09cccec02..000000000 --- a/CHANGES/293.feature +++ /dev/null @@ -1 +0,0 @@ -Changed default config location to ``/cli.toml``. The old file will still be read. diff --git a/CHANGES/297.bugfix b/CHANGES/297.bugfix deleted file mode 100644 index 28ef2d54c..000000000 --- a/CHANGES/297.bugfix +++ /dev/null @@ -1 +0,0 @@ -Deprecate orphans delete command in favor of orphan cleanup and use new rest interface on pulpcore>=3.14. diff --git a/CHANGES/298.bugfix b/CHANGES/298.bugfix deleted file mode 100644 index 274ef8eab..000000000 --- a/CHANGES/298.bugfix +++ /dev/null @@ -1 +0,0 @@ -Changed the name of retained-versions to retain-repo-versions. diff --git a/CHANGES/299.bugfix b/CHANGES/299.bugfix deleted file mode 100644 index c2471f48a..000000000 --- a/CHANGES/299.bugfix +++ /dev/null @@ -1 +0,0 @@ -Improved a confusing error message around pulp components. diff --git a/CHANGES/302.feature b/CHANGES/302.feature deleted file mode 100644 index 2600671d9..000000000 --- a/CHANGES/302.feature +++ /dev/null @@ -1 +0,0 @@ -Enable exports for ansible repositories. diff --git a/CHANGES/305.feature b/CHANGES/305.feature deleted file mode 100644 index 9d9519b5a..000000000 --- a/CHANGES/305.feature +++ /dev/null @@ -1 +0,0 @@ -Added --sles-auth-token to rpm remote commands. diff --git a/CHANGES/311.bugfix b/CHANGES/311.bugfix deleted file mode 100644 index 784c2ebc1..000000000 --- a/CHANGES/311.bugfix +++ /dev/null @@ -1 +0,0 @@ -Added minimum of 1 to `--limit` option. diff --git a/CHANGES/327.feature b/CHANGES/327.feature deleted file mode 100644 index a3fe01428..000000000 --- a/CHANGES/327.feature +++ /dev/null @@ -1 +0,0 @@ -Added ansible content list command. diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 668773431..178aa7180 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.11.0.dev" +__version__ = "0.11.0" ############################################################################## diff --git a/setup.py b/setup.py index e37cb84d0..a1f98445a 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.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",