release: prepare 3.0.0 (liberty)

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

Change-Id: Iaf2112da836e26f8c4d856c693ad7d83db29dc30
This commit is contained in:
Emilien Macchi 2015-11-25 23:54:48 +01:00
parent ae87d9b0f8
commit c374840910
4 changed files with 27 additions and 3 deletions

View File

@ -1,3 +1,23 @@
##2015-11-25 - 3.0.0
###Summary
This is a major release for OpenStack Liberty but contains no API-breaking
changes.
####Features
- support for FreeBSD
###Bugfixes
- explicitly say that ovs_redhat parent is ovs
- add require ovs_redhat.rb to ovs_redhat_el6.rb
####Maintenance
- acceptance: use common bits from puppet-openstack-integration
- remove class_parameter_defaults puppet-lint check
- fix RSpec 3.x syntax
- initial msync run for all Puppet OpenStack modules
##2015-10-15 - 2.1.0
###Summary

View File

@ -1,7 +1,7 @@
VSwitch
=======
2.1.0 - 2015.1 - Kilo
3.0.0 - 2015.2 - Liberty
A Puppet module providing things for vSwitches. At the moment OVS is the only
one I've added but please feel free to contribute new providers through

View File

@ -1,6 +1,6 @@
{
"name": "openstack-vswitch",
"version": "2.1.0",
"version": "3.0.0",
"author": "Endre Karlson, Dan Bode and OpenStack Contributors",
"license": "Apache-2.0",
"source": "git://github.com/openstack/puppet-vswitch.git",
@ -27,6 +27,10 @@
{
"operatingsystem": "Ubuntu",
"operatingsystemrelease": [ "12.04", "14.04" ]
},
{
"operatingsystem":"FreeBSD",
"operatingsystemrelease": [ "10.0", "11.0" ]
}
],
"requirements": [

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"