From 84f9dd28deea4180eb48449b6c5842d27c01ff1c Mon Sep 17 00:00:00 2001 From: Ina Panova Date: Fri, 5 Apr 2019 12:16:19 +0200 Subject: [PATCH] Prepare for docker beta 2. --- README.rst | 21 +++++++++++++++++++++ setup.py | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index d00dd885..10603beb 100644 --- a/README.rst +++ b/README.rst @@ -242,3 +242,24 @@ Edit the file ``/etc/docker/daemon.json`` and add:: More info: https://docs.docker.com/registry/insecure/#deploy-a-plain-http-registry + +Release Notes 4.0 +----------------- + +pulp-docker 4.0 is currently in Beta. Backwards incompatible changes might be made until Beta is over. + +4.0.0b2 +^^^^^^^ + +- Compatibility with pulpcore-plugin-0.1.0rc1 +- Performance improvements and bug fixes +- Add support for syncing repo with foreign layers +- Change sync pipeline to use Futures to handle nested content +- Make Docker distributions asyncronous +- Add support to create publication directly + +4.0.0b1 +^^^^^^^ + +Add support for basic sync of a docker repo form a V2Registry +Add support for docker/podman pull from a docker distbution served by Pulp diff --git a/setup.py b/setup.py index 5f30b1c2..eea75216 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup requirements = [ - 'pulpcore-plugin==0.1rc1', + 'pulpcore-plugin~=0.1rc1', ] @@ -12,7 +12,7 @@ setup( name='pulp-docker', - version='4.0.0b1', + version='4.0.0b2', description='pulp-docker plugin for the Pulp Project', long_description=long_description, license='GPLv2+',