Showing with 16 additions and 5 deletions.
  1. +6 −1 CHANGELOG.md
  2. +1 −1 manifests/params.pp
  3. +9 −3 metadata.json
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).


## [Unreleased][unreleased]

## Release 1.1.1 - 2016-01-11
### Changed
- CHANGELOG: Fixed comparison URL's for the releases
- CHANGELOG: Fixed changed header for 1.1.1
- Fix a facts lookup issue that caused us to break on Ubuntu

## Release 1.1.0 - 2016-01-08
### Added
Expand Down Expand Up @@ -44,7 +48,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- README with full documentation.
- Boilerplate such as Gemfile, Travis configuration, LICENSE and so on.

[unreleased]: https://github.com/voxpupuli/puppet-unattended_upgrades/compare/HEAD...1.1.0
[unreleased]: https://github.com/voxpupuli/puppet-unattended_upgrades/compare/HEAD...1.1.1
[1.1.1]: https://github.com/voxpupuli/puppet-unattended_upgrades/compare/1.1.1...1.1.0
[1.1.0]: https://github.com/voxpupuli/puppet-unattended_upgrades/compare/1.1.0...1.0.2
[1.0.3]: https://github.com/voxpupuli/puppet-unattended_upgrades/compare/1.0.2...1.0.3
[1.0.2]: https://github.com/voxpupuli/puppet-unattended_upgrades/compare/1.0.1...1.0.2
Expand Down
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
}
'ubuntu': {
# TODO do we really want to pull in ${distro_codename}-updates by default?
case $::distcodename {
case $xfacts['lsbdistcodename'] {
'precise': {
$legacy_origin = true
$origins = [
Expand Down
12 changes: 9 additions & 3 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppet-unattended_upgrades",
"version": "1.1.0",
"version": "1.1.1",
"author": "voxpupuli",
"summary": "Provides an interface for managing Apt unattended_upgrades with Puppet",
"license": "Apache-2.0",
Expand Down Expand Up @@ -35,7 +35,13 @@
}
],
"dependencies": [
{"name":"puppetlabs/stdlib","version_requirement":">= 4.6.0 < 5.0.0"},
{"name":"puppetlabs/apt","version_requirement":">= 2.2.0 < 3.0.0"}
{
"name": "puppetlabs/stdlib",
"version_requirement": ">= 4.6.0 < 5.0.0"
},
{
"name": "puppetlabs/apt",
"version_requirement": ">= 2.2.0 < 3.0.0"
}
]
}