Skip to content
This repository has been archived by the owner on Oct 28, 2019. It is now read-only.

Commit

Permalink
Merge pull request #126 from daviddavis/rc5
Browse files Browse the repository at this point in the history
RC5 release
  • Loading branch information
daviddavis authored Sep 11, 2019
2 parents b7e37a5 + 75a5abb commit f8fbc32
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 8 deletions.
34 changes: 34 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,40 @@ Changelog

.. towncrier release notes start
0.1.0rc5.dev (2019-09-10)
=========================


Features
--------

- Expose CharInFilter to plugins, which can filter by lists of strings.
`#5182 <https://pulp.plan.io/issues/5182>`_
- Plugin writers can now define settings programatically.
`#5290 <https://pulp.plan.io/issues/5290>`_


Bugfixes
--------

- Breaking change on how to subclass Master/Detail models in plugins, now `default_related_name` is required for Detail models.
`#4681 <https://pulp.plan.io/issues/4681>`_
- Fixes `too many open files` when trying to perform large syncs with many downloads.
`#5323 <https://pulp.plan.io/issues/5323>`_


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

- Updating docs for subclassing models.
`#4681 <https://pulp.plan.io/issues/4681>`_
- Added documentation on how to add settings programatically.
`#5290 <https://pulp.plan.io/issues/5290>`_


----


0.1.0rc4 (2019-07-25)
=====================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/4681.bugfix

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 1 addition & 1 deletion pulpcore/plugin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.1.0rc5.dev'
__version__ = '0.1.0rc5'

# plugins declare that they are a pulp plugin by subclassing PulpPluginAppConfig
from pulpcore.app.apps import PulpPluginAppConfig # noqa
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
name='pulpcore-plugin',
description='Pulp Plugin API',
long_description=long_description,
version='0.1.0rc5.dev',
version='0.1.0rc5',
license='GPLv2+',
packages=find_packages(exclude=['test']),
author='Pulp Team',
Expand Down

0 comments on commit f8fbc32

Please sign in to comment.