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: I4197df608de51cca828aced39e9be3531967253c
This commit is contained in:
Emilien Macchi 2015-11-24 09:47:15 +01:00
parent fd27b60ce5
commit a09301ab15
5 changed files with 10 additions and 4 deletions

4
CHANGELOG.md Normal file
View File

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

View File

@ -1,6 +1,8 @@
AODH
====
7.0.0 - 2015.2.0 - Liberty
#### Table of Contents
1. [Overview - What is the AODH 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": "puppet-aodh",
"version": "0.0.1",
"version": "7.0.0",
"author": "OpenStack Contributors",
"summary": "Puppet module for OpenStack Aodh",
"license": "Apache-2.0",
@ -29,6 +29,6 @@
"dependencies": [
{ "name": "puppetlabs/inifile", "version_requirement": ">=1.0.0 <2.0.0" },
{ "name": "puppetlabs/stdlib", "version_requirement": ">= 4.2.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"