Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://pulp.plan.io/issues/4396>`_
- Override the Remote's serializer to allow policy='on_demand' and policy='streamed'.
`#4990 <https://pulp.plan.io/issues/4990>`_


Improved Documentation
----------------------

- Switch to using `towncrier <https://github.com/hawkowl/towncrier>`_ for better release notes.
`#4875 <https://pulp.plan.io/issues/4875>`_


----


2 changes: 0 additions & 2 deletions CHANGES/4396.feature

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/4875.doc

This file was deleted.

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

This file was deleted.

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

default_app_config = 'pulp_python.app.PulpPythonPluginAppConfig'
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 setup, find_packages

requirements = [
'pulpcore-plugin~=0.1rc2',
'pulpcore-plugin~=0.1rc3',
'pkginfo',
'packaging',
]
Expand All @@ -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+',
Expand Down