Skip to content

Commit 46d0a55

Browse files
author
John Bellone
committedOct 7, 2015
Fixes a few issues with dependencies.
1 parent 4ffefcf commit 46d0a55

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed
 

‎Berksfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
source 'https://supermarket.chef.io'
2-
cookbook 'chef-vault', git: 'https://github.com/johnbellone/chef-vault-cookbook'
2+
cookbook 'chef-vault', git: 'https://github.com/chef-cookbooks/chef-vault'
33
metadata
44

55
group :test do

‎CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

7+
## [1.3.1]
8+
### Bug Fixes
9+
- Fixes constraints on cookbooks for builds.
10+
- Modifies chef-vault cookbook entry to use upstream.
11+
712
## [1.3.0]
813
### Enhancements
914
- Travis builds now use new container infrastructure.
@@ -20,7 +25,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2025
- #222: Fixes syntax for Consul watch resource configuration. [@wk8](https://github.com/wk8)
2126
- #223: Skips SELinux recipe on non-Linux platforms. [@kamaradclimber](https://github.com/kamaradclimber)
2227
- #227: Fixes definition resource to be able to override name. [@tomzo](https://github.com/tomzo)
23-
28+
`
2429
## [0.10.0]
2530
### Enhancements
2631
- Node attribute for specifying Consul log file. [@darron](https://github.com/darron)
@@ -83,7 +88,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8388
### Bug Fixes
8489
- Reloading the Consul service when using runit init style.
8590

86-
[Unreleased]: https://github.com/johnbellone/consul-cookbook/compare/v1.3.0...HEAD
91+
[Unreleased]: https://github.com/johnbellone/consul-cookbook/compare/v1.3.2...HEAD
92+
[1.3.1]: https://github.com/johnbellone/consul-cookbook/compare/v1.3.1...HEAD
8793
[1.3.0]: https://github.com/johnbellone/consul-cookbook/compare/v1.3.0...HEAD
8894
[0.10.0]: https://github.com/johnbellone/consul-cookbook/compare/v0.10.0...HEAD
8995
[0.9.1]: https://github.com/johnbellone/consul-cookbook/compare/v0.9.1...HEAD

‎metadata.rb

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
license 'Apache 2.0'
55
description 'Application cookbook which installs and configures Consul.'
66
long_description 'Application cookbook which installs and configures Consul.'
7-
version '1.3.0'
7+
version '1.3.1'
88

99
recipe 'consul::default', 'Installs, configures and starts the Consul service.'
1010

@@ -14,11 +14,14 @@
1414
supports 'arch'
1515
supports 'windows'
1616

17-
depends 'chef-vault'
17+
depends 'chef-vault', '~> 1.3'
1818
depends 'chocolatey'
1919
depends 'golang'
20-
depends 'firewall', '~> 2.0.3'
20+
depends 'firewall', '~> 2.0'
2121
depends 'libartifact', '~> 1.3'
2222
depends 'poise', '~> 2.2'
2323
depends 'poise-service', '~> 1.0'
2424
depends 'selinux', '~> 0.9'
25+
26+
source_url 'https://github.com/johnbellone/consul-cookbook' if respond_to?(:source_url)
27+
issues_url 'https://github.com/johnbellone/consul-cookbook/issues' if respond_to?(:issues_url)

0 commit comments

Comments
 (0)
Failed to load comments.