diff --git a/CHANGELOG.md b/CHANGELOG.md index 9011ada2..be1eb088 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 0b2c4f37..24ac3be3 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/metadata.json b/metadata.json index 60bf7ce9..a0e7ddb7 100644 --- a/metadata.json +++ b/metadata.json @@ -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": [ diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index 429e807c..15e8cc97 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -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"