Fix the depends cookbook version issue in metadata.rb

The depends condition should be ether of below:
depends 'cookbook-name', '>=x.y.z'
depends 'cookbook-name', '~>x.y'

Closes-bug: 1300524
Change-Id: I09bbf98c275b3a8cff2c7ef75a93a7f111ae8f57
This commit is contained in:
Chen Zhiwei 2014-03-31 02:00:40 -04:00
parent c83fb23d83
commit 981a447a85
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,11 @@
# CHANGELOG for cookbook-openstack-ops-messaging
This file is used to list changes made in each version of cookbook-openstack-ops-messaging.
## 9.0.1
### Bug
* Fix the depends cookbook version issue in metadata.rb
## 9.0.0
* Upgrade to Icehouse

View File

@ -4,7 +4,7 @@ maintainer 'Chef Software, Inc.'
maintainer_email 'matt@getchef.com'
license 'Apache 2.0'
description 'Provides the shared messaging configuration for Chef for OpenStack.'
version '9.0.0'
version '9.0.1'
recipe 'server', 'Installs and configures server packages for messaging queue used by the deployment.'
recipe 'rabbitmq-server', 'Installs and configures RabbitMQ and is called via the server recipe'
@ -14,4 +14,4 @@ recipe 'rabbitmq-server', 'Installs and configures RabbitMQ and is called via th
end
depends 'openstack-common', '~> 9.0'
depends 'rabbitmq', '~> 3.0.4'
depends 'rabbitmq', '>= 3.0.4'