Skip to content
This repository has been archived by the owner on Dec 7, 2022. It is now read-only.

Commit

Permalink
Prepare for beta6.
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
ipanova committed Sep 5, 2019
1 parent c660d58 commit 20c6850
Show file tree
Hide file tree
Showing 17 changed files with 48 additions and 17 deletions.
45 changes: 45 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,51 @@ Changelog

.. towncrier release notes start
4.0.0b6 (2019-09-05)
====================


Features
--------

- Add endpoint to recursively copy manifests from a source repository to a destination repository.
`#3403 <https://pulp.plan.io/issues/3403>`_
- Add endpoint to recursively add docker content to a repository.
`#3405 <https://pulp.plan.io/issues/3405>`_
- As a user I can sync from a docker repo published by Pulp2/Pulp3.
`#4737 <https://pulp.plan.io/issues/4737>`_
- Add support for tagging and untagging manifests via an additional endpoint
`#4934 <https://pulp.plan.io/issues/4934>`_
- Add endpoint for copying all tags from a source repository, or specific tags by name.
`#4947 <https://pulp.plan.io/issues/4947>`_
- Add ability to filter Manifests and ManifestTags by media_type and digest
`#5033 <https://pulp.plan.io/issues/5033>`_
- Add ability to filter Manifests, ManifestTags and Blobs by multiple media_types
`#5157 <https://pulp.plan.io/issues/5157>`_
- Add endpoint to recursively remove docker content from a repository.
`#5179 <https://pulp.plan.io/issues/5179>`_


Bugfixes
--------

- Allow Accept header to send multiple values.
`#5211 <https://pulp.plan.io/issues/5211>`_
- Populate ManifestListManifest thru table during sync.
`#5235 <https://pulp.plan.io/issues/5235>`_
- Fixed a problem where repeated syncs created invalid orphaned tags.
`#5252 <https://pulp.plan.io/issues/5252>`_


Misc
----

- `#4681 <https://pulp.plan.io/issues/4681>`_, `#5213 <https://pulp.plan.io/issues/5213>`_, `#5218 <https://pulp.plan.io/issues/5218>`_


----


4.0.0b5 (2019-07-04)
====================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/3403.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3405.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4681.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4737.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4934.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4947.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5033.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5157.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5179.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5211.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5213.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5218.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5235.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/5252.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion pulp_docker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '4.0.0b6.dev'
__version__ = '4.0.0b6'

default_app_config = 'pulp_docker.app.PulpDockerPluginAppConfig'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import find_packages, setup

requirements = [
'pulpcore-plugin~=0.1rc3',
'pulpcore-plugin~=0.1rc4',
]


Expand All @@ -12,7 +12,7 @@

setup(
name='pulp-docker',
version='4.0.0b6.dev',
version='4.0.0b6',
description='pulp-docker plugin for the Pulp Project',
long_description=long_description,
license='GPLv2+',
Expand Down

0 comments on commit 20c6850

Please sign in to comment.