From f61d89d9cf4e8f87ddc8549a2a6f5a41ca1f67f8 Mon Sep 17 00:00:00 2001 From: David Swan Date: Tue, 7 Nov 2017 09:44:43 +0000 Subject: [PATCH 1/3] FM-6572PreRelease --- CHANGELOG.md | 18 ++++++++++++++++++ metadata.json | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c92ccf397..a08bb5e2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](http://semver.org). ## Supported Release 4.21.0 ### Summary +This is a clean release in preparation of putting the module through the rubocop process. + +#### Added +- Support has been added for Debian 9 +- 'Stdlib::Mode type' has been added to the module. +- A type for 'ensure' has been added to the service resources. +- A new function 'sprintf_hash' has been added to allow the use of named references. + +#### Removed +- Support has been removed for: RedHat 4, CentOS 4, OracleLinux 4, Scientific 4, SLES 10 SP4, Windows Server 2003, Windows Server 2003 R2 and Windows 8. + +#### Fixed +- The 'ruby_spec.rb' test file has been altered s that it properly checks results. +- Example syntax in 'file_line.rb' has been fixed. + +## Supported Release 4.21.0 +### Summary + This is a small feature release that includes a revamped, albeit backwards-compatible file_line type. #### Added diff --git a/metadata.json b/metadata.json index 36d4f3edc..37432ad07 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "puppetlabs-stdlib", - "version": "4.21.0", + "version": "4.22.0", "author": "puppetlabs", "summary": "Standard library of resources for Puppet modules.", "license": "Apache-2.0", From 61c228b4d5929745119785a045aa3a0af924c151 Mon Sep 17 00:00:00 2001 From: David Swan Date: Tue, 14 Nov 2017 09:36:57 +0000 Subject: [PATCH 2/3] no message --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a08bb5e2d..e83fd6f85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org). -## Supported Release 4.21.0 +## Supported Release 4.22.0 ### Summary This is a clean release in preparation of putting the module through the rubocop process. From 3798f41586a963b44d65d47afab7bf6bb720397f Mon Sep 17 00:00:00 2001 From: Jean B Date: Tue, 14 Nov 2017 09:47:15 -0800 Subject: [PATCH 3/3] fix typo paameter -> parameter --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 592ae9993..61c9f4a97 100644 --- a/README.md +++ b/README.md @@ -1697,7 +1697,7 @@ Returns the number of elements in a string, an array or a hash. This function wi Perform printf-style formatting with named references of text. -The first paameter is format string describing how the rest of the parameters in the hash +The first parameter is format string describing how the rest of the parameters in the hash should be formatted. See the documentation for the `Kernel::sprintf` function in Ruby for all the details.