Skip to content

Commit d10fc82

Browse files
author
JJ Asghar
committed
Merge pull request #196 from jjasghar/3.4.3
3.4.3 release
2 parents 7901152 + a85f0c6 commit d10fc82

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
rabbitmq Cookbook CHANGELOG
22
===========================
33
This file is used to list changes made in each version of the rabbitmq cookbook.
4+
v3.8.0 (2015-01-07)
5+
------------------
6+
Song of this Release:
7+
8+
- Update to `3.4.3` release of rabbitmq
9+
- Updated from 12.04 to 14.04 for Ubuntu Specs
10+
411
v3.7.0 (2014-12-18)
512
------------------
613
- #185 Updated cloud kitchen.yml

attributes/default.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Latest RabbitMQ.com version to install
2-
default['rabbitmq']['version'] = '3.4.2'
2+
default['rabbitmq']['version'] = '3.4.3'
33
# The distro versions may be more stable and have back-ported patches
44
default['rabbitmq']['use_distro_version'] = false
55

metadata.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
maintainer_email '[email protected]'
44
license 'Apache 2.0'
55
description 'Installs and configures RabbitMQ server'
6-
version '3.7.0'
6+
version '3.8.0'
77
recipe 'rabbitmq', 'Install and configure RabbitMQ'
88
recipe 'rabbitmq::cluster', 'Set up RabbitMQ clustering.'
99
recipe 'rabbitmq::plugin_management', 'Manage plugins with node attributes'

spec/default_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
let(:runner) { ChefSpec::ServerRunner.new(UBUNTU_OPTS) }
8585
let(:node) { runner.node }
8686
let(:chef_run) do
87-
node.set['rabbitmq']['version'] = '3.4.2'
87+
node.set['rabbitmq']['version'] = '3.4.3'
8888
runner.converge(described_recipe)
8989
end
9090

@@ -105,7 +105,7 @@
105105
let(:runner) { ChefSpec::ServerRunner.new(REDHAT_OPTS) }
106106
let(:node) { runner.node }
107107
let(:chef_run) do
108-
node.set['rabbitmq']['version'] = '3.4.2'
108+
node.set['rabbitmq']['version'] = '3.4.3'
109109
runner.converge(described_recipe)
110110
end
111111

spec/spec_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020
UBUNTU_OPTS = {
2121
:platform => 'ubuntu',
22-
:version => '12.04',
22+
:version => '14.04',
2323
:log_level => LOG_LEVEL
2424
}
2525
CENTOS_OPTS = {

0 commit comments

Comments
 (0)