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: I6fcc8d1eaa65d44ec2e3682390909e01f5017ada
This commit is contained in:
Emilien Macchi 2015-11-24 10:28:56 +01:00
parent eb923f65de
commit 47a0c6392f
5 changed files with 29 additions and 4 deletions

View File

@ -1,3 +1,26 @@
##2015-11-24 - 7.0.0
###Summary
This is a backwards-compatible major release for OpenStack Liberty.
####Features
- fallback to default rcfile
- prepare $::os_package_type
- add a proxy inifile provider
- allow the use of an ensure_absent_val param
- create is_service_default function
- create os_service_default fact
- allow to path custom fragment to vhost
- pass necessary options to Apache when using WSGI
####Bugfixes
- fix fact for puppet facter 2.0.1+
####Maintenance
- initial msync run for all Puppet OpenStack modules
- enable acceptance tests for openstack_config
- remove class_parameter_defaults puppet-lint check
##2015-10-10 - 6.1.0
###Summary

View File

@ -1,7 +1,7 @@
openstacklib
============
6.1.0 - 2015.1 - Kilo
7.0.0 - 2015.2 - Liberty
#### Table of Contents
@ -324,4 +324,6 @@ Puppet Module :: OpenStack Version :: OpenStack Codename
3.0.0 -> 2013.2.0 -> Havana
4.0.0 -> 2014.1.0 -> Icehouse
5.0.0 -> 2014.2.0 -> Juno
6.0.0 -> 2015.1.0 -> Kilo
7.0.0 -> 2015.2.0 -> Liberty
```

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-openstacklib",
"version": "6.1.0",
"version": "7.0.0",
"author": "Puppet Labs and OpenStack Contributors",
"summary": "Puppet OpenStack Libraries",
"license": "Apache-2.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"