Skip to content

Commit

Permalink
Prepare a 1.1.x release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashley Penney committed May 19, 2014
1 parent b366981 commit 027b7bc
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
##2014-05-19 - Supported Release 1.1.0
###Summary

This is a supported release. This release adds one new feature,
the ability to control the quote character used. This allows you
to do things like:

```
ini_subsetting { '-Xms':
ensure => present,
path => '/some/config/file',
section => '',
setting => 'JAVA_ARGS',
quote_char => '"',
subsetting => '-Xms'
value => '256m',
}
```

Which builds:

```
JAVA_ARGS="-Xmx256m -Xms256m"
```

####Features
- Add quote_char parameter to the ini_subsetting resource type

####Bugfixes

####Known Bugs
* No known bugs

##2014-03-04 - Supported Release 1.0.3
###Summary

Expand Down
2 changes: 1 addition & 1 deletion Modulefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name 'puppetlabs-inifile'
version '1.0.3'
version '1.1.0'
source 'git://github.com/puppetlabs/puppetlabs-inifile.git'
author 'Puppetlabs'
description 'Resource types for managing settings in INI files'
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-inifile",
"version": "1.0.3",
"version": "1.1.0",
"source": "https://github.com/puppetlabs/puppetlabs-inifile",
"author": "Puppet Labs",
"license": "Apache-2.0",
Expand Down Expand Up @@ -86,7 +86,7 @@
}
],
"requirements": [
{ "name": "pe", "version_requirement": "3.2.x" },
{ "name": "pe", "version_requirement": "3.3.x" },
{ "name": "puppet", "version_requirement": "3.x" }
],
"dependencies": []
Expand Down

0 comments on commit 027b7bc

Please sign in to comment.