From ca3a66df89c5ca50b102ec6f056cda98a6496029 Mon Sep 17 00:00:00 2001 From: Maria Zlatkova Date: Wed, 22 Mar 2017 15:15:17 +0200 Subject: [PATCH] Create stable/ocata branch for openstack-manuals Note that this is the first time openstack-manuals is using this process. Since 2012, the team only created branches. Since openstack-manuals now uses reno, let's branch and tag together. We use 15.0.0 as release number since Ocata is the fifteenth release of OpenStack. Note that openstack-manuals has no release-job, we do not push the content anywhere, just publish. Change-Id: I0f92f2bf6c563e9ca71fdfba5e00da73d3a98fc7 --- deliverables/_independent/openstack-manuals.yaml | 14 ++++++++++++++ openstack_releases/project_config.py | 3 +++ openstack_releases/versionutils.py | 1 + 3 files changed, 18 insertions(+) create mode 100644 deliverables/_independent/openstack-manuals.yaml diff --git a/deliverables/_independent/openstack-manuals.yaml b/deliverables/_independent/openstack-manuals.yaml new file mode 100644 index 0000000000..33fd90d5a5 --- /dev/null +++ b/deliverables/_independent/openstack-manuals.yaml @@ -0,0 +1,14 @@ +--- +launchpad: openstack-manuals +team: Documentation +type: other +release-type: openstack-manuals +release-notes: http://docs.openstack.org/releasenotes/openstack-manuals/ +branches: + - name: stable/ocata + location: 15.0.0 +releases: + - version: 15.0.0 + projects: + - repo: openstack/openstack-manuals + hash: e32d413f74160615cd7b17930f1f9224e391b223 diff --git a/openstack_releases/project_config.py b/openstack_releases/project_config.py index 530c0fb632..169d6f8c9e 100644 --- a/openstack_releases/project_config.py +++ b/openstack_releases/project_config.py @@ -61,6 +61,9 @@ _RELEASE_JOBS_FOR_TYPE = { 'fuel': [ # Fuel is manually packaged by the team at Mirantis. ], + 'openstack-manuals': [ + # openstack-manuals is not released, only generated content pushed + ], } diff --git a/openstack_releases/versionutils.py b/openstack_releases/versionutils.py index f2723361fa..b88ed692a0 100644 --- a/openstack_releases/versionutils.py +++ b/openstack_releases/versionutils.py @@ -34,6 +34,7 @@ _VALIDATORS = {'std': (pbr.version.SemanticVersion.from_pip_string, lambda x: str(x)), } _VALIDATORS['fuel'] = _VALIDATORS['std'] +_VALIDATORS['openstack-manuals'] = _VALIDATORS['std'] def validate_version(versionstr, release_type='std', pre_ok=True):