diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fbdbf8..0b5c21f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. +## [v3.2.2](https://github.com/voxpupuli/hiera-eyaml/tree/v3.2.2) (2021-05-03) + +[Full Changelog](https://github.com/voxpupuli/hiera-eyaml/compare/v3.2.1...v3.2.2) + +**Fixed bugs:** + +- Using `3.2.1` for editing an eyaml created with `3.2.0` will mess up formatting [\#318](https://github.com/voxpupuli/hiera-eyaml/issues/318) +- Fix block formatting when editing [\#319](https://github.com/voxpupuli/hiera-eyaml/pull/319) ([kenyon](https://github.com/kenyon)) + +**Closed issues:** + +- Concerns about the encrypted? method [\#316](https://github.com/voxpupuli/hiera-eyaml/issues/316) + ## [v3.2.1](https://github.com/voxpupuli/hiera-eyaml/tree/v3.2.1) (2021-02-16) [Full Changelog](https://github.com/voxpupuli/hiera-eyaml/compare/v3.2.0...v3.2.1) diff --git a/Gemfile b/Gemfile index 067e4e9..8fbc7b9 100644 --- a/Gemfile +++ b/Gemfile @@ -8,7 +8,7 @@ group :development do gem "rspec-expectations", '~> 3.1.0' gem "hiera-eyaml-plaintext" gem "puppet", ENV['PUPPET_VERSION'] || '>= 7' - gem 'github_changelog_generator', :require => false, :git => 'https://github.com/voxpupuli/github-changelog-generator', :branch => 'voxpupuli_essential_fixes' + gem 'github_changelog_generator' gem "activesupport" end diff --git a/lib/hiera/backend/eyaml.rb b/lib/hiera/backend/eyaml.rb index 3fef285..422cf47 100644 --- a/lib/hiera/backend/eyaml.rb +++ b/lib/hiera/backend/eyaml.rb @@ -2,7 +2,7 @@ class Hiera module Backend module Eyaml - VERSION = "3.2.1" + VERSION = "3.2.2" DESCRIPTION = "Hiera-eyaml is a backend for Hiera which provides OpenSSL encryption/decryption for Hiera properties" class RecoverableError < StandardError