From f5f0ac71ff9b359348819d00543b14d8a0d15956 Mon Sep 17 00:00:00 2001 From: Eric Putnam Date: Wed, 9 Aug 2017 11:13:51 -0700 Subject: (maint) adjust puppet version requirement --- metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata.json b/metadata.json index 0bd0184..66c47c1 100644 --- a/metadata.json +++ b/metadata.json @@ -101,7 +101,7 @@ "requirements": [ { "name": "puppet", - "version_requirement": ">= 4.7.0 < 5.0.0" + "version_requirement": ">=2.7.20 < 6.0.0" } ], "description": "Standard Library for Puppet Modules", -- cgit v1.2.3 From a8302160fb60cd9729dc4de48fd33194bb69fc8b Mon Sep 17 00:00:00 2001 From: Eric Putnam Date: Wed, 9 Aug 2017 11:35:03 -0700 Subject: (MODULES-5436) release prep for 4.17.2 --- CHANGELOG.md | 13 +++++++++++++ metadata.json | 4 ++-- spec/functions/strftime_spec.rb | 4 ++-- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4930a9c..c15ce85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# Change log + +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.17.2 +### Summary + +Patch release that reverts the Puppet version requirement lower bound to again include Puppet 2.7+. + +#### Fixed +- Reverts lower bound of Puppet requirement to 2.7.20 + ## Supported Release 4.17.1 ### Summary diff --git a/metadata.json b/metadata.json index 66c47c1..79b5be5 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "puppetlabs-stdlib", - "version": "4.17.1", + "version": "4.17.2", "author": "puppetlabs", "summary": "Standard library of resources for Puppet modules.", "license": "Apache-2.0", @@ -101,7 +101,7 @@ "requirements": [ { "name": "puppet", - "version_requirement": ">=2.7.20 < 6.0.0" + "version_requirement": ">=2.7.20 < 5.0.0" } ], "description": "Standard Library for Puppet Modules", diff --git a/spec/functions/strftime_spec.rb b/spec/functions/strftime_spec.rb index e76774a..51f8a73 100755 --- a/spec/functions/strftime_spec.rb +++ b/spec/functions/strftime_spec.rb @@ -14,9 +14,9 @@ describe 'strftime' do expect(result.to_i).to(be > 1311953157) end - it "using %s should be lower then 1.5 trillion" do + it "using %s should be lower then 2.0 trillion" do result = scope.function_strftime(["%s"]) - expect(result.to_i).to(be < 1500000000) + expect(result.to_i).to(be < 2000000000) end it "should return a date when given %Y-%m-%d" do -- cgit v1.2.3 From 3721197ffe82c95d968f9bc4d46b98c7cbcacfa2 Mon Sep 17 00:00:00 2001 From: tphoney Date: Thu, 10 Aug 2017 12:42:40 +0100 Subject: MODULES-5440 fix upper bound for puppet --- metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata.json b/metadata.json index 79b5be5..da6cb5c 100644 --- a/metadata.json +++ b/metadata.json @@ -101,7 +101,7 @@ "requirements": [ { "name": "puppet", - "version_requirement": ">=2.7.20 < 5.0.0" + "version_requirement": ">=2.7.20 < 6.0.0" } ], "description": "Standard Library for Puppet Modules", -- cgit v1.2.3 From 159586fa4151a44503045f23d70b98454e72ff8a Mon Sep 17 00:00:00 2001 From: Eric Putnam Date: Thu, 10 Aug 2017 09:16:00 -0700 Subject: (MODULES-5436) release prep for 4.18.0 This isn't actually another release, we decided to do 4.18.0 instead of 4.17.2 --- CHANGELOG.md | 4 ++-- metadata.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c15ce85..39d892e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,10 @@ 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.17.2 +## Supported Release 4.18.0 ### Summary -Patch release that reverts the Puppet version requirement lower bound to again include Puppet 2.7+. +Small release that reverts the Puppet version requirement lower bound to again include Puppet 2.7+ and bumps the upper bound to now include Puppet 5. #### Fixed - Reverts lower bound of Puppet requirement to 2.7.20 diff --git a/metadata.json b/metadata.json index da6cb5c..62cd362 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "puppetlabs-stdlib", - "version": "4.17.2", + "version": "4.18.0", "author": "puppetlabs", "summary": "Standard library of resources for Puppet modules.", "license": "Apache-2.0", -- cgit v1.2.3