2.1.0 prep
This commit is contained in:
parent
f1fe05ec2b
commit
083bed3437
2 changed files with 19 additions and 6 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,3 +1,16 @@
|
|||
##2015-06-16 - Supported Release 2.1.0
|
||||
###Summary
|
||||
|
||||
This release largely makes `apt::key` and `apt::source` API-compatible with the 1.8.x versions for ease in upgrading, and also addresses some compatibility issues with older versions of Puppet.
|
||||
|
||||
####Features
|
||||
- Add API compatibility to `apt::key` and `apt::source`
|
||||
- Added `apt_reboot_required` fact
|
||||
|
||||
####Bugfixes
|
||||
- Fix compatibility with Puppet versions 3.0-3.4
|
||||
- Work around future parser bug PUP-4133
|
||||
|
||||
##2015-04-28 - Supported Release 2.0.1
|
||||
###Summary
|
||||
|
||||
|
|
|
@ -1,12 +1,15 @@
|
|||
{
|
||||
"name": "puppetlabs-apt",
|
||||
"version": "2.0.1",
|
||||
"version": "2.1.0",
|
||||
"author": "Puppet Labs",
|
||||
"summary": "Provides an interface for managing Apt source, key, and definitions with Puppet",
|
||||
"license": "Apache-2.0",
|
||||
"source": "https://github.com/puppetlabs/puppetlabs-apt",
|
||||
"project_page": "https://github.com/puppetlabs/puppetlabs-apt",
|
||||
"issues_url": "https://tickets.puppetlabs.com/browse/MODULES",
|
||||
"dependencies": [
|
||||
{"name":"puppetlabs/stdlib","version_requirement":">= 4.5.0 < 5.0.0"}
|
||||
],
|
||||
"operatingsystem_support": [
|
||||
{
|
||||
"operatingsystem": "Debian",
|
||||
|
@ -27,14 +30,11 @@
|
|||
"requirements": [
|
||||
{
|
||||
"name": "pe",
|
||||
"version_requirement": ">= 3.3.0"
|
||||
"version_requirement": ">= 3.3.0 < 5.0.0"
|
||||
},
|
||||
{
|
||||
"name": "puppet",
|
||||
"version_requirement": "3.x"
|
||||
"version_requirement": ">= 3.0.0 < 5.0.0"
|
||||
}
|
||||
],
|
||||
"dependencies": [
|
||||
{"name":"puppetlabs/stdlib","version_requirement":">= 4.5.0"}
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue