Skip to content

Commit f861e81

Browse files
author
Jeff McCune
committed
Merge branch stdlib 4.0.0 release
* v4: Update gemspec for 4.0.0 Update function documentation for 4.0.0 Update Modulefile, README, CHANGELOG for stdlib-4.0.0
2 parents 9c5805f + 475e29f commit f861e81

File tree

4 files changed

+364
-64
lines changed

4 files changed

+364
-64
lines changed

.gemspec

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,22 @@
44
Gem::Specification.new do |s|
55
s.name = "puppetmodule-stdlib"
66

7-
s.version = "3.2.0"
7+
s.version = "4.0.0"
88

99
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1010
s.authors = ["Puppet Labs"]
1111
s.date = "2013-04-10"
1212
s.description = "Puppet Labs Standard Library module"
1313
s.email = "[email protected]"
1414
s.executables = []
15-
s.files = []
15+
s.files = [ 'CHANGELOG', 'CONTRIBUTING.md', 'Gemfile', 'LICENSE', 'Modulefile',
16+
'README.markdown', 'README_DEVELOPER.markdown', 'RELEASE_PROCESS.markdown',
17+
'Rakefile', 'spec/spec.opts' ]
18+
s.files += Dir['lib/**/*.rb'] + Dir['manifests/**/*.pp'] + Dir['tests/**/*.pp'] + Dir['spec/**/*.rb']
1619
s.homepage = "https://github.com/puppetlabs/puppetlabs-stdlib"
1720
s.rdoc_options = ["--title", "Puppet Standard Library Module", "--main", "README.markdown", "--line-numbers"]
1821
s.require_paths = ["lib"]
19-
s.rubyforge_project = "puppetmodule_stdlib"
22+
s.rubyforge_project = "puppetmodule-stdlib"
2023
s.rubygems_version = "1.8.24"
2124
s.summary = "This module provides a standard library of resources for developing Puppet Modules."
2225

CHANGELOG

Lines changed: 75 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,78 @@
1-
2012-11-28 - Peter Meier <[email protected]> - 3.2.0
2-
* Add reject() function (a79b2cd)
1+
2013-04-11 - Jeff McCune <[email protected]> - 4.0.0
2+
* stdlib 4.0 drops support with Puppet 2.7
3+
* stdlib 4.0 preserves support with Puppet 3
4+
5+
2013-04-11 - Jeff McCune <[email protected]> - 4.0.0
6+
* Add ability to use puppet from git via bundler (9c5805f)
7+
8+
2013-04-10 - Jeff McCune <[email protected]> - 4.0.0
9+
* (maint) Make stdlib usable as a Ruby GEM (e81a45e)
10+
11+
2013-04-10 - Erik Dalén <[email protected]> - 4.0.0
12+
* Add a count function (f28550e)
13+
14+
2013-03-31 - Amos Shapira <[email protected]> - 4.0.0
15+
* (#19998) Implement any2array (7a2fb80)
16+
17+
2013-03-29 - Steve Huff <[email protected]> - 4.0.0
18+
* (19864) num2bool match fix (8d217f0)
19+
20+
2013-03-20 - Erik Dalén <[email protected]> - 4.0.0
21+
* Allow comparisons of Numeric and number as String (ff5dd5d)
22+
23+
2013-03-26 - Richard Soderberg <[email protected]> - 4.0.0
24+
* add suffix function to accompany the prefix function (88a93ac)
25+
26+
2013-03-19 - Kristof Willaert <[email protected]> - 4.0.0
27+
* Add floor function implementation and unit tests (0527341)
28+
29+
2012-04-03 - Eric Shamow <[email protected]> - 4.0.0
30+
* (#13610) Add is_function_available to stdlib (961dcab)
31+
32+
2012-12-17 - Justin Lambert <[email protected]> - 4.0.0
33+
* str2bool should return a boolean if called with a boolean (5d5a4d4)
34+
35+
2012-10-23 - Uwe Stuehler <[email protected]> - 4.0.0
36+
* Fix number of arguments check in flatten() (e80207b)
37+
38+
2013-03-11 - Jeff McCune <[email protected]> - 4.0.0
39+
* Add contributing document (96e19d0)
40+
41+
2013-03-04 - Raphaël Pinson <[email protected]> - 4.0.0
42+
* Add missing documentation for validate_augeas and validate_cmd to README.markdown (a1510a1)
43+
44+
2013-02-14 - Joshua Hoblitt <[email protected]> - 4.0.0
45+
* (#19272) Add has_element() function (95cf3fe)
46+
47+
2013-02-07 - Raphaël Pinson <[email protected]> - 4.0.0
48+
* validate_cmd(): Use Puppet::Util::Execution.execute when available (69248df)
49+
50+
2012-12-06 - Raphaël Pinson <[email protected]> - 4.0.0
51+
* Add validate_augeas function (3a97c23)
52+
53+
2012-12-06 - Raphaël Pinson <[email protected]> - 4.0.0
54+
* Add validate_cmd function (6902cc5)
55+
56+
2013-01-14 - David Schmitt <[email protected]> - 4.0.0
57+
* Add geppetto project definition (b3fc0a3)
58+
59+
2013-01-02 - Jaka Hudoklin <[email protected]> - 4.0.0
60+
* Add getparam function to get defined resource parameters (20e0e07)
61+
62+
2013-01-05 - Jeff McCune <[email protected]> - 4.0.0
63+
* (maint) Add Travis CI Support (d082046)
64+
65+
2012-12-04 - Jeff McCune <[email protected]> - 4.0.0
66+
* Clarify that stdlib 3 supports Puppet 3 (3a6085f)
67+
68+
2012-11-30 - Erik Dalén <[email protected]> - 4.0.0
69+
* maint: style guideline fixes (7742e5f)
70+
71+
2012-11-09 - James Fryman <[email protected]> - 4.0.0
72+
* puppet-lint cleanup (88acc52)
73+
74+
2012-11-06 - Joe Julian <[email protected]> - 4.0.0
75+
* Add function, uriescape, to URI.escape strings. Redmine #17459 (fd52b8d)
376

477
2012-09-18 - Chad Metcalf <[email protected]> - 3.2.0
578
* Add an ensure_packages function. (8a8c09e)

Modulefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name 'puppetlabs-stdlib'
2-
version '3.2.0'
3-
source 'git://github.com/puppetlabs/puppetlabs-stdlib'
2+
version '4.0.0'
3+
source 'git://github.com/puppetlabs/puppetlabs-stdlib.git'
44
author 'puppetlabs'
55
license 'Apache 2.0'
66
summary 'Puppet Module Standard Library'

0 commit comments

Comments
 (0)