From 110056bb92e78692c381cbf53153d9b4a858dc90 Mon Sep 17 00:00:00 2001 From: Matthias Dellweg Date: Wed, 30 Jun 2021 09:29:55 +0200 Subject: [PATCH] Release 0.10.0 [noissue] --- .bumpversion.cfg | 2 +- CHANGES.rst | 39 +++++++++++++++++++++++++++++++++ CHANGES/158.feature | 1 - CHANGES/207.feature | 1 - CHANGES/232.bugfix | 1 - CHANGES/232.feature | 1 - CHANGES/240.feature | 1 - CHANGES/248.bugfix | 1 - CHANGES/251.feature | 1 - CHANGES/254.feature | 1 - CHANGES/256.feature | 1 - CHANGES/262.feature | 1 - CHANGES/269.feature | 1 - CHANGES/271.feature | 1 - pulpcore/cli/common/__init__.py | 2 +- setup.py | 2 +- 16 files changed, 42 insertions(+), 15 deletions(-) delete mode 100644 CHANGES/158.feature delete mode 100644 CHANGES/207.feature delete mode 100644 CHANGES/232.bugfix delete mode 100644 CHANGES/232.feature delete mode 100644 CHANGES/240.feature delete mode 100644 CHANGES/248.bugfix delete mode 100644 CHANGES/251.feature delete mode 100644 CHANGES/254.feature delete mode 100644 CHANGES/256.feature delete mode 100644 CHANGES/262.feature delete mode 100644 CHANGES/269.feature delete mode 100644 CHANGES/271.feature diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 394a825c8..a6fd82687 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0.dev +current_version = 0.10.0 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))? diff --git a/CHANGES.rst b/CHANGES.rst index 34f2d7ede..5cb0c0553 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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 `_ +- Added missing search options to publication list commands. + `#207 `_ +- Add a timeout parameter to specify the duration how long to wait for background tasks. + `#232 `_ +- Python remote fields --includes/--excludes can now be specified with requirements.txt files + `#240 `_ +- Updated RPM commands to be compatible with new 3.13 auto-publish changes + `#251 `_ +- Added generic content list command. + `#254 `_ +- Update the click dependency to 8.0.1. + `#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 `_ +- Added ``--cid`` option to ``task list`` command to allow fitering by correlation id. + `#269 `_ +- Added allow-uploads/block-uploads option to python distribution commands + `#271 `_ + + +Bugfixes +-------- + +- Properly report timed out tasks. + `#232 `_ +- Use ``find_packages`` instead of ``find_namespace_packages`` in setup to be compatible with ``setuptools<39.2.0``. + `#248 `_ + + +---- + + 0.9.0 (2021-05-17) ================== diff --git a/CHANGES/158.feature b/CHANGES/158.feature deleted file mode 100644 index b36968d22..000000000 --- a/CHANGES/158.feature +++ /dev/null @@ -1 +0,0 @@ -Change resource options to accept plugin and type along with the name. diff --git a/CHANGES/207.feature b/CHANGES/207.feature deleted file mode 100644 index e579c7267..000000000 --- a/CHANGES/207.feature +++ /dev/null @@ -1 +0,0 @@ -Added missing search options to publication list commands. diff --git a/CHANGES/232.bugfix b/CHANGES/232.bugfix deleted file mode 100644 index 7df60339c..000000000 --- a/CHANGES/232.bugfix +++ /dev/null @@ -1 +0,0 @@ -Properly report timed out tasks. diff --git a/CHANGES/232.feature b/CHANGES/232.feature deleted file mode 100644 index e1b9a0538..000000000 --- a/CHANGES/232.feature +++ /dev/null @@ -1 +0,0 @@ -Add a timeout parameter to specify the duration how long to wait for background tasks. diff --git a/CHANGES/240.feature b/CHANGES/240.feature deleted file mode 100644 index 2f2041692..000000000 --- a/CHANGES/240.feature +++ /dev/null @@ -1 +0,0 @@ -Python remote fields --includes/--excludes can now be specified with requirements.txt files diff --git a/CHANGES/248.bugfix b/CHANGES/248.bugfix deleted file mode 100644 index 9422b9586..000000000 --- a/CHANGES/248.bugfix +++ /dev/null @@ -1 +0,0 @@ -Use ``find_packages`` instead of ``find_namespace_packages`` in setup to be compatible with ``setuptools<39.2.0``. diff --git a/CHANGES/251.feature b/CHANGES/251.feature deleted file mode 100644 index f2b0090fa..000000000 --- a/CHANGES/251.feature +++ /dev/null @@ -1 +0,0 @@ -Updated RPM commands to be compatible with new 3.13 auto-publish changes diff --git a/CHANGES/254.feature b/CHANGES/254.feature deleted file mode 100644 index 25d99e5bf..000000000 --- a/CHANGES/254.feature +++ /dev/null @@ -1 +0,0 @@ -Added generic content list command. diff --git a/CHANGES/256.feature b/CHANGES/256.feature deleted file mode 100644 index 9dcfbc910..000000000 --- a/CHANGES/256.feature +++ /dev/null @@ -1 +0,0 @@ -Update the click dependency to 8.0.1. diff --git a/CHANGES/262.feature b/CHANGES/262.feature deleted file mode 100644 index 1ce98430d..000000000 --- a/CHANGES/262.feature +++ /dev/null @@ -1 +0,0 @@ -Added feature to bypass chunk uploading if the chunk size exceeds the file size. This speeds up the upload by about 30-40%. diff --git a/CHANGES/269.feature b/CHANGES/269.feature deleted file mode 100644 index b87e86797..000000000 --- a/CHANGES/269.feature +++ /dev/null @@ -1 +0,0 @@ -Added ``--cid`` option to ``task list`` command to allow fitering by correlation id. diff --git a/CHANGES/271.feature b/CHANGES/271.feature deleted file mode 100644 index 5d3ca7a65..000000000 --- a/CHANGES/271.feature +++ /dev/null @@ -1 +0,0 @@ -Added allow-uploads/block-uploads option to python distribution commands diff --git a/pulpcore/cli/common/__init__.py b/pulpcore/cli/common/__init__.py index 4b9e6e4a0..4195044fd 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.dev" +__version__ = "0.10.0" ############################################################################## diff --git a/setup.py b/setup.py index 83040204d..0c554e470 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.dev", + version="0.10.0", packages=plugin_packages + extra_packages, package_data={package: ["py.typed"] for package in plugin_packages}, python_requires=">=3.6",