Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
This is a compatibility and feature release.  This release adds one new
feature, the ability to control the quote character used.  This allows you to
do things like:

```puppet
  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"
```
  • Loading branch information
hunner committed Jun 4, 2014
1 parent 0b9f9e2 commit 521b287
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
##2014-05-19 - Supported Release 1.1.0
##2014-06-04 - 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:
This is a compatibility and feature 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':
Expand Down

0 comments on commit 521b287

Please sign in to comment.