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: Ic95dc71f9dfb2d06665f8de6b54a0fe1f113300c
This commit is contained in:
Emilien Macchi 2015-11-25 16:09:26 +01:00
parent a22687f4ed
commit f658ca8213
5 changed files with 11 additions and 5 deletions

4
CHANGELOG.md Normal file
View File

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

View File

@ -1,6 +1,8 @@
puppet-gnocchi
==============
7.0.0 - 2015.2.0 - Liberty
#### Table of Contents
1. [Overview - What is the gnocchi 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-gnocchi",
"version": "5.0.0",
"version": "7.0.0",
"author": "OpenStack Contributors",
"summary": "Puppet module for OpenStack Gnocchi",
"license": "Apache-2.0",
@ -32,8 +32,8 @@
],
"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"