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

Commit

Permalink
Merge pull request #3494 from dkliban/beta3
Browse files Browse the repository at this point in the history
bumps version for beta 3
  • Loading branch information
dkliban committed May 16, 2018
2 parents 747c7ab + fc94a52 commit 33f93ea
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
2 changes: 1 addition & 1 deletion common/setup.py
Expand Up @@ -5,7 +5,7 @@

setup(
name='pulpcore-common',
version='3.0.0b1',
version='3.0.0b2',
long_description=long_description,
license='GPLv2+',
packages=find_packages(exclude=['test']),
Expand Down
2 changes: 1 addition & 1 deletion docs/release-notes/index.rst
Expand Up @@ -11,4 +11,4 @@ Release Notes
:maxdepth: 2
:caption: Plugin API

plugin_api/0.0.z
plugin_api/0.1.z
@@ -1,5 +1,5 @@
============================
Plugin API 0.0 Release Notes
Plugin API 0.1 Release Notes
============================

The Plugin API is not yet declared as stable. Backwards incompatible changes might be made until
Expand All @@ -11,8 +11,15 @@ See :doc:`Plugin API <../../plugins/plugin-api/overview>` and
:doc:`Plugin Development <../../plugins/plugin-writer/index>`.


Plugin API 0.0.1
================
0.1.0b2
=======

Features
--------
* Tasking system switching from Celery+RabbitMQ to RQ+Redis. This breaking change impacts both
plugin writers and users. See
`the blog post about this change and how to update <https://pulpproject.org/2018/05/08/pulp3-moving-to-rq/>`_.


0.1.0b1
=======

Initial beta release
8 changes: 3 additions & 5 deletions docs/release-notes/pulpcore/3.0.x.rst
Expand Up @@ -4,6 +4,8 @@ Pulp 3.0 Release Notes
3.0.0b3
=======

* `Comprehensive list of changes and bugfixes for beta 3 <https://github.com/pulp/pulp/pulls?utf8=%E2%9C%93&q=label%3A3.0+is%3Aclosed+merged%3A2018-05-02T17%3A23%3A00-06%3A00..2018-05-16T17%3A30%3A00-06%3A00+>`_.

Breaking Changes
----------------

Expand All @@ -14,7 +16,7 @@ Breaking Changes
3.0.0b2
=======

* `Comprehensive list of changes and bugfixes <https://github.com/pulp/pulp/pulls?utf8=%E2%9C%93&q=label%3A3.0+is%3Aclosed+merged%3A2018-04-25..2018-05-03+>`_
* `Comprehensive list of changes and bugfixes for beta 2 <https://github.com/pulp/pulp/pulls?utf8=%E2%9C%93&q=label%3A3.0+is%3Aclosed+merged%3A2018-04-25T12%3A30%3A00-06%3A00..2018-05-02T17%3A23%3A00-06%3A00+>`_


Breaking Changes
Expand All @@ -23,10 +25,6 @@ Breaking Changes
* Default database changed from sqlite to postgres. See
`why <https://www.redhat.com/archives/pulp-dev/2018-April/msg00204.html>`_

Features Added
--------------

* `3633 <https://pulp.plan.io/issues/3633>`_ As a user, I am able to know the PK of each resource

3.0.0b1
=======
Expand Down
4 changes: 2 additions & 2 deletions plugin/setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

requirements = [
'pulpcore',
'pulpcore==3.0.0b3',
'aiohttp',
'aiofiles',
'backoff',
Expand All @@ -14,7 +14,7 @@
name='pulpcore-plugin',
description='Pulp Plugin API',
long_description=long_description,
version='0.0.1b1',
version='0.1.0b2',
license='GPLv2+',
packages=find_packages(exclude=['test']),
author='Pulp Team',
Expand Down
4 changes: 2 additions & 2 deletions pulpcore/setup.py
Expand Up @@ -14,14 +14,14 @@
'PyYAML',
'rq',
'setuptools',
'pulpcore-common'
'pulpcore-common==3.0.0b2'
]

setup(
name='pulpcore',
description='Pulp Django Application and Related Modules',
long_description=long_description,
version='3.0.0b2',
version='3.0.0b3',
license='GPLv2+',
packages=find_packages(exclude=['test']),
author='Pulp Team',
Expand Down

0 comments on commit 33f93ea

Please sign in to comment.