From 4c2643814135f8ea211aa70aaf0559a15a9e87ba Mon Sep 17 00:00:00 2001 From: Dana Walker Date: Thu, 1 Aug 2019 15:25:52 -0400 Subject: [PATCH] Bump version to beta7, add release notes [noissue] --- CHANGES.rst | 24 ++++++++++++++++++++++++ CHANGES/4396.feature | 2 -- CHANGES/4875.doc | 1 - CHANGES/4990.feature | 1 - pulp_python/__init__.py | 2 +- setup.py | 4 ++-- 6 files changed, 27 insertions(+), 7 deletions(-) delete mode 100644 CHANGES/4396.feature delete mode 100644 CHANGES/4875.doc delete mode 100644 CHANGES/4990.feature diff --git a/CHANGES.rst b/CHANGES.rst index 09f09b28..7b7fe463 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,3 +13,27 @@ Changelog .. towncrier release notes start +3.0.0b7 (2019-08-01) +==================== + + +Features +-------- + +- Users can upload a file to create content and optionally add to a repo in one step known as + one-shot upload + `#4396 `_ +- Override the Remote's serializer to allow policy='on_demand' and policy='streamed'. + `#4990 `_ + + +Improved Documentation +---------------------- + +- Switch to using `towncrier `_ for better release notes. + `#4875 `_ + + +---- + + diff --git a/CHANGES/4396.feature b/CHANGES/4396.feature deleted file mode 100644 index 93ddbb82..00000000 --- a/CHANGES/4396.feature +++ /dev/null @@ -1,2 +0,0 @@ -Users can upload a file to create content and optionally add to a repo in one step known as -one-shot upload \ No newline at end of file diff --git a/CHANGES/4875.doc b/CHANGES/4875.doc deleted file mode 100644 index de8e3286..00000000 --- a/CHANGES/4875.doc +++ /dev/null @@ -1 +0,0 @@ -Switch to using `towncrier `_ for better release notes. diff --git a/CHANGES/4990.feature b/CHANGES/4990.feature deleted file mode 100644 index 09591b2c..00000000 --- a/CHANGES/4990.feature +++ /dev/null @@ -1 +0,0 @@ -Override the Remote's serializer to allow policy='on_demand' and policy='streamed'. \ No newline at end of file diff --git a/pulp_python/__init__.py b/pulp_python/__init__.py index d4e623fb..b9226319 100644 --- a/pulp_python/__init__.py +++ b/pulp_python/__init__.py @@ -1,3 +1,3 @@ -__version__ = '3.0.0b6' +__version__ = '3.0.0b7' default_app_config = 'pulp_python.app.PulpPythonPluginAppConfig' diff --git a/setup.py b/setup.py index 0a88d1dd..b8a7f24a 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages requirements = [ - 'pulpcore-plugin~=0.1rc2', + 'pulpcore-plugin~=0.1rc3', 'pkginfo', 'packaging', ] @@ -13,7 +13,7 @@ setup( name='pulp-python', - version='3.0.0b6', + version='3.0.0b7', description='pulp-python plugin for the Pulp Project', long_description=long_description, license='GPLv2+',