Skip to content

Commit e5442e9

Browse files
committed
(maint) Prep module for new release
1 parent 4a5da6a commit e5442e9

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ script: 'bundle exec rake validate && bundle exec rake lint && SPEC_OPTS="--form
88
matrix:
99
fast_finish: true
1010
include:
11-
- rvm: 1.8.7
12-
env: PUPPET_GEM_VERSION="~> 3.0"
1311
- rvm: 1.9.3
1412
env: PUPPET_GEM_VERSION="~> 3.0"
1513
- rvm: 2.1.5

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
##Release 0.6.0
2+
###Summary
3+
This release includes support for new parameters, lots of unit tests, and tweaks to make sure everything works on different versions of puppet and lvm
4+
5+
####Features
6+
- Update .travis.yml to run puppet 3.0 and higher
7+
- Add swap support
8+
- Add RAL to types
9+
- List all PVs in a VG
10+
- Unit tests for types
11+
12+
####Bugfixes
13+
- Filesystem type can create journal devices
14+
- Add persistent and minor parameters to logical volume type
15+
- Make size_is_minsize usable
16+
- Add support for older lvm versions
17+
118
##2015-04-28 - Release 0.5.0
219
###Summary
320

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,8 @@ end
1515

1616
gem 'puppet-lint', '>= 1.0.0'
1717
gem 'puppet-lint-unquoted_string-check', :require => false
18+
19+
if RUBY_VERSION < '2.0'
20+
gem 'mime-types', '<3.0', :require => false
21+
end
1822
# vim:ft=ruby

metadata.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-lvm",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"author": "Puppet Labs",
55
"summary": "Provides Puppet types and providers to manage Logical Resource Management (LVM) features.",
66
"license": "GPLv2",
@@ -36,7 +36,11 @@
3636
"requirements": [
3737
{
3838
"name": "puppet",
39-
"version_requirement": "3.x"
39+
"version_requirement": ">= 3.0.0 < 5.0.0"
40+
},
41+
{
42+
"name": "pe",
43+
"version_requirement": ">= 3.0.0 < 2015.4.0"
4044
}
4145
]
4246
}

0 commit comments

Comments
 (0)