Skip to content

Commit

Permalink
Merge pull request #802 from eputnam/release_prep
Browse files Browse the repository at this point in the history
(MODULES-5436) release prep for 4.17.2
  • Loading branch information
HAIL9000 authored Aug 9, 2017
2 parents e8da440 + a830216 commit faadebf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -101,7 +101,7 @@
"requirements": [
{
"name": "puppet",
"version_requirement": ">= 4.7.0 < 5.0.0"
"version_requirement": ">=2.7.20 < 5.0.0"
}
],
"description": "Standard Library for Puppet Modules",
Expand Down
4 changes: 2 additions & 2 deletions spec/functions/strftime_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
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
Expand Down

0 comments on commit faadebf

Please sign in to comment.