Showing with 7 additions and 2 deletions.
  1. +5 −0 CHANGELOG.md
  2. +1 −1 manifests/eyaml.pp
  3. +1 −1 metadata.json
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change log
All notable changes to this project will be documented in this file.

## [1.3.1] - 2015-07-24
### Bugfixes:
- Allow `eyaml_version` to be undef (the default) on PE 3.7/3.8

## [1.3.0] - 2015-07-23
### Features:
- Add PE 3.8 support
Expand Down Expand Up @@ -70,6 +74,7 @@ All notable changes to this project will be documented in this file.
### Bugfixes:
- Only ensure datadir if it does not have `%{.*}`

[1.3.1]: https://github.com/hunner/puppet-hiera/compare/1.3.0...1.3.1
[1.3.0]: https://github.com/hunner/puppet-hiera/compare/1.2.0...1.3.0
[1.2.0]: https://github.com/hunner/puppet-hiera/compare/1.1.1...1.2.0
[1.1.1]: https://github.com/hunner/puppet-hiera/compare/1.1.0...1.1.1
Expand Down
2 changes: 1 addition & 1 deletion manifests/eyaml.pp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# that here
#XXX Pre-puppet 4.0.0 version (PUP-1073)
#BUG This can't actually update the gem version if already installed.
if $eyaml_version =~ /^\d+\.\d+\.\d+$/ {
if $eyaml_version and $eyaml_version =~ /^\d+\.\d+\.\d+$/ {
$gem_flag = "--version ${eyaml_version}"
} else {
$gem_flag = undef
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hunner-hiera",
"version": "1.3.0",
"version": "1.3.1",
"author": "hunner",
"summary": "Deploy hiera.yaml with hierarchy, and datadir",
"license": "BSD-2-Clause",
Expand Down