release: prepare 7.0.0 (liberty)

This patch prepares this Puppet module to be released in 7.x series (Liberty)
with 7.0.0.

Change-Id: I23aaa0f43d927c1fdc36e23b902746070aba29ea
This commit is contained in:
Emilien Macchi 2015-11-25 16:15:31 +01:00
parent 592778efe2
commit 95cfad7014
5 changed files with 12 additions and 6 deletions

4
CHANGELOG.md Normal file
View File

@ -0,0 +1,4 @@
##2015-11-24 - 7.0.0
###Summary
- Initial release of the puppet-murano module

View File

@ -1,6 +1,8 @@
murano
======
7.0.0 - 2015.2.0 - Liberty
#### Table of Contents
1. [Overview - What is the murano module?](#overview)

View File

@ -58,7 +58,7 @@ task :spec_prep do
zuul_clone_cmd += ['git://git.openstack.org', "#{repo}"]
sh(*zuul_clone_cmd)
else
sh("git clone https://git.openstack.org/#{repo} #{repo}")
sh("git clone https://git.openstack.org/#{repo} -b stable/liberty #{repo}")
end
script = ['env']
script += ["PUPPETFILE_DIR=#{Dir.pwd}/spec/fixtures/modules"]

View File

@ -1,6 +1,6 @@
{
"name": "openstack-murano",
"version": "1.0.0",
"version": "7.0.0",
"author": "Red Hat and OpenStack Contributors",
"summary": "Puppet module for OpenStack Murano",
"license": "Apache-2.0",
@ -28,8 +28,8 @@
"description": "Installs and configures OpenStack Murano (Application Catalog).",
"dependencies": [
{ "name": "puppetlabs/inifile", "version_requirement": ">=1.0.0 <2.0.0" },
{ "name": "openstack/keystone", "version_requirement": ">=6.0.0 <7.0.0" },
{ "name": "openstack/keystone", "version_requirement": ">=7.0.0 <8.0.0" },
{ "name": "puppetlabs/stdlib", "version_requirement": ">=4.0.0 <5.0.0" },
{ "name": "openstack/openstacklib", "version_requirement": ">=6.0.0 <7.0.0" }
{ "name": "openstack/openstacklib", "version_requirement": ">=7.0.0 <8.0.0" }
]
}
}

View File

@ -38,7 +38,7 @@ RSpec.configure do |c|
zuul_clone_cmd += "git://git.openstack.org #{repo}"
on host, zuul_clone_cmd
else
on host, "git clone https://git.openstack.org/#{repo} #{repo}"
on host, "git clone https://git.openstack.org/#{repo} -b stable/liberty #{repo}"
end
on host, "ZUUL_REF=#{zuul_ref} ZUUL_BRANCH=#{zuul_branch} ZUUL_URL=#{zuul_url} bash #{repo}/install_modules.sh"