Skip to content

Commit 0466e1b

Browse files
author
Jeff McCune
committed
Update CHANGELOG and README for 1.0.0
1 parent 7e3b9b7 commit 0466e1b

File tree

4 files changed

+24
-8
lines changed

4 files changed

+24
-8
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2011-08-04 Puppet Labs <[email protected]> - 1.0.0
2+
* Initial stable release
3+
* Add validate_array and validate_string functions
4+
* Make merge() function work with Ruby 1.8.5
5+
* Add hash merging function
6+
* Add has_key function
7+
* Add loadyaml() function
8+
* Add append_line native
9+
110
2011-06-21 Jeff McCune <[email protected]> - 0.1.7
211
* Add validate_hash() and getvar() functions
312

Modulefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name 'puppetlabs-stdlib'
2-
version '0.1.7'
2+
version '1.0.0'
33
source 'git://github.com/puppetlabs/puppetlabs-stdlib'
44
author 'puppetlabs'
55
license 'Apache 2.0'

README.markdown

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,21 @@ This module is designed to work with Puppet version 2.6 and later. It may be
2020
forked if Puppet 2.7 specific features are added. There are currently no plans
2121
for a Puppet 0.25 standard library module.
2222

23-
# Overview #
24-
25-
TBA
23+
# Functions #
2624

27-
# Contact Information #
25+
Please see `puppet doc -r function` for documentation on each function. The
26+
current list of functions is:
2827

29-
Jeff McCune <[email protected]>
28+
* getvar
29+
* has\_key
30+
* loadyaml
31+
* merge.rb
32+
* validate\_array
33+
* validate\_bool
34+
* validate\_hash
35+
* validate\_re
36+
* validate\_string
3037

31-
# Functions #
3238
## validate\_hash ##
3339

3440
$somehash = { 'one' => 'two' }

RELEASE_PROCESS.markdown

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
* Work in a topic branch
44
* Submit a github pull request
55
* Address any comments / feeback
6-
* Merge into master using --no-fw
6+
* Merge into master using --no-ff
77
* Update the CHANGELOG
8+
* Update the Modulefile
89
* Create an annotated tag with git tag -a X.Y.Z -m 'version X.Y.Z'
910
* Push the tag with git push origin --tags
1011
* Build a new package with puppet-module

0 commit comments

Comments
 (0)