diff --git a/CHANGELOG.md b/CHANGELOG.md index be997d809..fc6d5c247 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +2014-07-23 Release 0.3.0 + +Backwards incompatible changes: +- Now requires puppetlabs/concat >= 1.1.0 + +Features: +- Allow gateway to be unset for private networks +- Add sysconfig dhcpd file for RedHat based systems + +Bugfixes: +- Remove deprecated concat::setup +- Update templates to remove deprecation warnings +- Ensure $dhcp_dir exists + 2014-03-25 Release 0.2.0 Backwards incompatible changes: diff --git a/Modulefile b/Modulefile deleted file mode 100644 index cc0437a99..000000000 --- a/Modulefile +++ /dev/null @@ -1,11 +0,0 @@ -name 'puppetlabs-dhcp' -version '0.2.0' -source 'git://github.com/puppetlabs/puppetlabs-dhcp.git' -author 'puppetlabs' -license 'Apache License Version 2.0' -summary 'Manage the ISC DHCP Daemon' -description 'A Puppet module to deploy and manage the ISC DHCP server.' -project_page 'https://github.com/puppetlabs/puppet-dhcp' - -dependency 'puppetlabs/stdlib', '>= 2.0.0' -dependency 'puppetlabs/concat', '>= 1.1.0' diff --git a/metadata.json b/metadata.json new file mode 100644 index 000000000..7e371dbed --- /dev/null +++ b/metadata.json @@ -0,0 +1,13 @@ +{ + "name": "puppetlabs-dhcp", + "version": "0.3.0", + "source": "https://github.com/puppetlabs/puppetlabs-dhcp", + "author": "Puppet Labs", + "license": "Apache-2.0", + "project_page": "https://github.com/puppetlabs/puppetlabs-dhcp", + "summary": "Manage the ISC dhcp daemon", + "dependencies": [ + { "name": "puppetlabs/stdlib", "version_requirement": ">= 2.0.0" }, + { "name": "puppetlabs/concat", "version_requirement": ">= 1.1.0" } + ] +}