diff --git a/docs/release-notes/3.0.z.rst b/docs/release-notes/3.0.z.rst index fba69c6af..c99b38b9f 100644 --- a/docs/release-notes/3.0.z.rst +++ b/docs/release-notes/3.0.z.rst @@ -5,6 +5,24 @@ pulp-python 3.0 Release Notes pulp-python 3.0 is currently in Beta. Backwards incompatible changes might be made until Beta is over. +3.0.0b6 +======= + +* See all changes `here `_. + +* Adds support for `pulpcore 3.0.0.rc2 `_. + + Changes urls for distributions and publications + +* Adds lazy sync + +* Docs replace snippets with testable scripts + +3.0.0b5 +======= + +* Fix relative_path to allow pip install + 3.0.0b4 ======= @@ -21,8 +39,3 @@ might be made until Beta is over. synced. This mirrors the 'prereleases' flag that packaging.specifiers.SpecifierSet provides. * Removes Python 3.5 support - -3.0.0b5 -======= - -* Fix relative_path to allow pip install diff --git a/setup.py b/setup.py index 71c66ea0c..0a88d1dd4 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages requirements = [ - 'pulpcore-plugin~=0.1rc1', + 'pulpcore-plugin~=0.1rc2', 'pkginfo', 'packaging', ] @@ -13,7 +13,7 @@ setup( name='pulp-python', - version='3.0.0b5', + version='3.0.0b6', description='pulp-python plugin for the Pulp Project', long_description=long_description, license='GPLv2+',