Skip to content

Commit 474e9c7

Browse files
committed
Fix tests, release 1.2.0
- Fix tests looking for older ES version - Release 1.2.0
1 parent b854711 commit 474e9c7

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## [Unreleased](https://github.com/elastic/cookbook-elasticsearch/tree/HEAD)
44

5+
## [1.2.0](https://github.com/elastic/cookbook-elasticsearch/tree/1.2.0) (2015-10-16)
6+
[Full Changelog](https://github.com/elastic/cookbook-elasticsearch/compare/v1.0.3...1.2.0)
7+
8+
**Closed issues:**
9+
10+
- Compile error w/ 1.0.3 and Chef Server 12 [\#379](https://github.com/elastic/cookbook-elasticsearch/issues/379)
11+
- OS X Support [\#358](https://github.com/elastic/cookbook-elasticsearch/issues/358)
12+
- Dealing with plugin versions that don't match, Elasticsearch failing to start [\#330](https://github.com/elastic/cookbook-elasticsearch/issues/330)
13+
- ruby command not found [\#378](https://github.com/elastic/cookbook-elasticsearch/issues/378)
14+
15+
**Merged pull requests:**
16+
17+
- Update the README to remove a typo [\#381](https://github.com/elastic/cookbook-elasticsearch/pull/381) ([jtwarren](https://github.com/jtwarren))
18+
- Correct the full changelog links [\#375](https://github.com/elastic/cookbook-elasticsearch/pull/375) ([eheydrick](https://github.com/eheydrick))
19+
520
## [1.0.3](https://github.com/elastic/cookbook-elasticsearch/tree/1.0.3) (2015-09-20)
621
[Full Changelog](https://github.com/elastic/cookbook-elasticsearch/compare/v1.0.2...v1.0.3)
722

metadata.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
license 'Apache 2.0'
66
description 'Installs and configures Elasticsearch'
77
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
8-
version '1.0.3'
8+
version '1.2.0'
99

1010
depends 'apt'
1111
depends 'yum'

test/fixtures/cookbooks/elasticsearch_test/recipes/default.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
elasticsearch_plugin 'mobz/elasticsearch-head' do
5757
user 'foo'
5858
group 'bar'
59-
plugin_dir '/usr/local/awesome/elasticsearch-1.7.2/plugins'
59+
plugin_dir '/usr/local/awesome/elasticsearch-1.7.3/plugins'
6060
end
6161

6262
elasticsearch_service 'elasticsearch-crazy' do

test/integration/helpers/serverspec/install_examples.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
shared_examples_for 'elasticsearch install' do |args = {}|
44
dir = args[:dir] || '/usr/local'
5-
version = args[:version] || '1.7.2'
5+
version = args[:version] || '1.7.3'
66
package_name = args[:package] || false
77

88
expected_user = args[:user] || 'elasticsearch'

0 commit comments

Comments
 (0)