diff --git a/CHANGES.rst b/CHANGES.rst index 7b7fe463..93dbdf03 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,19 @@ Changelog .. towncrier release notes start +3.0.0b8 (2019-09-16) +==================== + + +Misc +---- + +- `#4681 `_ + + +---- + + 3.0.0b7 (2019-08-01) ==================== diff --git a/pulp_python/__init__.py b/pulp_python/__init__.py index b9226319..061373a0 100644 --- a/pulp_python/__init__.py +++ b/pulp_python/__init__.py @@ -1,3 +1,3 @@ -__version__ = '3.0.0b7' +__version__ = '3.0.0b8' default_app_config = 'pulp_python.app.PulpPythonPluginAppConfig' diff --git a/setup.py b/setup.py index b8a7f24a..27abb1b1 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages requirements = [ - 'pulpcore-plugin~=0.1rc3', + 'pulpcore-plugin~=0.1rc5', 'pkginfo', 'packaging', ] @@ -13,7 +13,7 @@ setup( name='pulp-python', - version='3.0.0b7', + version='3.0.0b8', description='pulp-python plugin for the Pulp Project', long_description=long_description, license='GPLv2+',