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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ python:
- "pypy"
before_install:
- "pushd .."
- "git clone https://github.com/pulp/pulp.git --branch master"
- "git clone https://github.com/pulp/pulp.git --branch 2.7-dev"
- "git clone https://github.com/pulp/nectar.git"
- "pushd nectar"
- "git checkout python-nectar-1.1.6-1"
Expand Down
2 changes: 1 addition & 1 deletion common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='pulp_python_common',
version='1.0.0',
version='1.1.0a1',
packages=find_packages(),
url='http://www.pulpproject.org',
license='GPLv2+',
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0'
version = '1.1'
# The full version, including alpha/beta/rc tags.
release = '1.0.0'
release = '1.1.0a1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
38 changes: 38 additions & 0 deletions docs/release-notes/1.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
1.1 Release Notes
=================

1.1.0
-----

The Pulp team is pleased to release version 1.1.0 of the Python plugins for Pulp.

Requirements
^^^^^^^^^^^^
The 1.1.x releases of the Python plugins depend on the Pulp 2.7.x or greater.

Upgrade
^^^^^^^

To upgrade, simply follow these steps (substituting for systemctl as appropriate, if you are not
using systemd):

#. Stop all Pulp services on every machine that is part of the installation::

$ for s in {pulp_workers,pulp_resource_manager,pulp_celerybeat,httpd,goferd}; do sudo systemctl stop $s; done;

#. Upgrade the Pulp packages on every machine::

$ sudo yum update

#. Apply database migrations::

$ sudo -u apache pulp-manage-db

#. Start the Pulp services::

$ for s in {pulp_workers,pulp_resource_manager,pulp_celerybeat,httpd,goferd}; do sudo systemctl start $s; done;

Bugfixes
^^^^^^^^

This release contains minor bugfixes. See the :fixedbugs:`1.1.0`.
1 change: 1 addition & 0 deletions docs/release-notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ Release Notes
:maxdepth: 2

1.0
1.1
2 changes: 1 addition & 1 deletion extensions_admin/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='pulp_python_extensions_admin',
version='1.0.0',
version='1.1.0a1',
packages=find_packages(),
url='http://www.pulpproject.org',
license='GPLv2+',
Expand Down
2 changes: 1 addition & 1 deletion plugins/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='pulp_python_plugins',
version='1.0.0',
version='1.1.0a1',
packages=find_packages(),
url='http://www.pulpproject.org',
license='GPLv2+',
Expand Down
6 changes: 3 additions & 3 deletions pulp-python.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}

Name: pulp-python
Version: 1.0.0
Release: 1%{?dist}
Version: 1.1.0
Release: 0.1.alpha%{?dist}
Summary: Support for Python content in the Pulp platform
Group: Development/Languages
License: GPLv2
Expand All @@ -14,7 +14,7 @@ BuildArch: noarch
BuildRequires: python-setuptools

# This is the minimum platform version we require to function.
%define pulp_version 2.5
%define pulp_version 2.7

%description
Provides a collection of platform plugins and client extensions support for Python packages.
Expand Down