Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ script: 'bundle exec rake validate && bundle exec rake lint && SPEC_OPTS="--form
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
##Release 0.6.0
###Summary
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

####Features
- Update .travis.yml to run puppet 3.0 and higher
- Add swap support
- Add RAL to types
- List all PVs in a VG
- Unit tests for types

####Bugfixes
- Filesystem type can create journal devices
- Add persistent and minor parameters to logical volume type
- Make size_is_minsize usable
- Add support for older lvm versions

##2015-04-28 - Release 0.5.0
###Summary

Expand Down
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@ end

gem 'puppet-lint', '>= 1.0.0'
gem 'puppet-lint-unquoted_string-check', :require => false

if RUBY_VERSION < '2.0'
gem 'mime-types', '<3.0', :require => false
end
# vim:ft=ruby
8 changes: 6 additions & 2 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-lvm",
"version": "0.5.0",
"version": "0.6.0",
"author": "Puppet Labs",
"summary": "Provides Puppet types and providers to manage Logical Resource Management (LVM) features.",
"license": "GPLv2",
Expand Down Expand Up @@ -36,7 +36,11 @@
"requirements": [
{
"name": "puppet",
"version_requirement": "3.x"
"version_requirement": ">= 3.0.0 < 5.0.0"
},
{
"name": "pe",
"version_requirement": ">= 3.0.0 < 2015.4.0"
}
]
}