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 AODH
==== ====
7.0.0 - 2015.2.0 - Liberty
#### Table of Contents #### Table of Contents
1. [Overview - What is the AODH module?](#overview) 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}"] zuul_clone_cmd += ['git://git.openstack.org', "#{repo}"]
sh(*zuul_clone_cmd) sh(*zuul_clone_cmd)
else else
sh("git clone https://git.openstack.org/#{repo} #{repo}") sh("git clone https://git.openstack.org/#{repo} -b stable/liberty #{repo}")
end end
script = ['env'] script = ['env']
script += ["PUPPETFILE_DIR=#{Dir.pwd}/spec/fixtures/modules"] script += ["PUPPETFILE_DIR=#{Dir.pwd}/spec/fixtures/modules"]

View File

@ -1,6 +1,6 @@
{ {
"name": "puppet-aodh", "name": "puppet-aodh",
"version": "0.0.1", "version": "7.0.0",
"author": "OpenStack Contributors", "author": "OpenStack Contributors",
"summary": "Puppet module for OpenStack Aodh", "summary": "Puppet module for OpenStack Aodh",
"license": "Apache-2.0", "license": "Apache-2.0",
@ -29,6 +29,6 @@
"dependencies": [ "dependencies": [
{ "name": "puppetlabs/inifile", "version_requirement": ">=1.0.0 <2.0.0" }, { "name": "puppetlabs/inifile", "version_requirement": ">=1.0.0 <2.0.0" },
{ "name": "puppetlabs/stdlib", "version_requirement": ">= 4.2.0 <5.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}" zuul_clone_cmd += "git://git.openstack.org #{repo}"
on host, zuul_clone_cmd on host, zuul_clone_cmd
else 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 end
on host, "ZUUL_REF=#{zuul_ref} ZUUL_BRANCH=#{zuul_branch} ZUUL_URL=#{zuul_url} bash #{repo}/install_modules.sh" on host, "ZUUL_REF=#{zuul_ref} ZUUL_BRANCH=#{zuul_branch} ZUUL_URL=#{zuul_url} bash #{repo}/install_modules.sh"