Skip to content

Commit faadebf

Browse files
authored
Merge pull request #802 from eputnam/release_prep
(MODULES-5436) release prep for 4.17.2
2 parents e8da440 + a830216 commit faadebf

3 files changed

Lines changed: 17 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# Change log
2+
3+
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/)
4+
and this project adheres to [Semantic Versioning](http://semver.org).
5+
6+
## Supported Release 4.17.2
7+
### Summary
8+
9+
Patch release that reverts the Puppet version requirement lower bound to again include Puppet 2.7+.
10+
11+
#### Fixed
12+
- Reverts lower bound of Puppet requirement to 2.7.20
13+
114
## Supported Release 4.17.1
215
### Summary
316

metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-stdlib",
3-
"version": "4.17.1",
3+
"version": "4.17.2",
44
"author": "puppetlabs",
55
"summary": "Standard library of resources for Puppet modules.",
66
"license": "Apache-2.0",
@@ -101,7 +101,7 @@
101101
"requirements": [
102102
{
103103
"name": "puppet",
104-
"version_requirement": ">= 4.7.0 < 5.0.0"
104+
"version_requirement": ">=2.7.20 < 5.0.0"
105105
}
106106
],
107107
"description": "Standard Library for Puppet Modules",

spec/functions/strftime_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
expect(result.to_i).to(be > 1311953157)
1515
end
1616

17-
it "using %s should be lower then 1.5 trillion" do
17+
it "using %s should be lower then 2.0 trillion" do
1818
result = scope.function_strftime(["%s"])
19-
expect(result.to_i).to(be < 1500000000)
19+
expect(result.to_i).to(be < 2000000000)
2020
end
2121

2222
it "should return a date when given %Y-%m-%d" do

0 commit comments

Comments
 (0)