Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
mirror
erlang
Commits
4f3fb1ae
Commit
4f3fb1ae
authored
Jan 13, 2016
by
Tim Smith
Browse files
Release 2.0.1
parent
7264c70b
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
4f3fb1ae
erlang Cookbook CHANGELOG
=========================
# erlang Cookbook CHANGELOG
This file is used to list changes made in each version of the erlang cookbook.
v2.0.0 (2015-10-20)
-------------------
*
The minimum supported Chef release is now 11
*
Removed the workaround for Ubuntu 10.04 as 10.04 is no longer a supported platform
*
Added additional platforms to the metadata
*
Improved readme formatting
*
Added source_url and issues_url to the metadata
*
Add a .foodcritic file to ignore rules
*
Updated the gitignore file
*
Updated to more modern platforms in the Kitchen config
*
Added chefignore file
*
Added Chef standard rubocop config
*
Updated Travis CI testing to use the ChefDK for up to date deps
*
Removed duplicate deps from the Berksfile
*
Updated Gemfile with the latest testing deps
*
Updated testing and contributing docs
*
Added maintainers.md and maintainers.toml files
*
Added travis and cookbook version badges to the readme
*
Added a Rakefile for simplified testing
*
Added basic convergence Chefspec
*
Resolved Rubocop warnings
v1.5.8 (2015-04-20)
-------------------
## v2.0.1 (2015-10-20)
-
Use https urls for downloads
-
Fix the computed attributes to behave correctly so you can override version and get a correct download URL
-
Added additional chefspecs
-
Added integration testing in Travis CI with kitchen docker
-
Fixed changelog typo
-
Update chefignore / .gitignore files
## v2.0.0 (2015-10-20)
-
The minimum supported Chef release is now 11
-
Removed the workaround for Ubuntu 10.04 as 10.04 is no longer a supported platform
-
Added additional platforms to the metadata
-
Improved readme formatting
-
Added source_url and issues_url to the metadata
-
Add a .foodcritic file to ignore rules
-
Updated the gitignore file
-
Updated to more modern platforms in the Kitchen config
-
Added chefignore file
-
Added Chef standard rubocop config
-
Updated Travis CI testing to use the ChefDK for up to date deps
-
Removed duplicate deps from the Berksfile
-
Updated Gemfile with the latest testing deps
-
Updated testing and contributing docs
-
Added maintainers.md and maintainers.toml files
-
Added travis and cookbook version badges to the readme
-
Added a Rakefile for simplified testing
-
Added basic convergence Chefspec
-
Resolved Rubocop warnings
## v1.5.8 (2015-04-20)
-
Use source, not site, for Berksfile
-
Lint fixes for rubocop and foodcritc
-
Move cloud specific kitchen config to .kitchen.cloud.yml
...
...
@@ -33,61 +38,42 @@ v1.5.8 (2015-04-20)
-
#29: Don't add Erlang Solutions yum repository in the "package" recipe
-
#29: Disable SSL verification of the EPEL repo in the "package" recipe due to an HTTP redirect bug in yum on RHEL -family 5.
v1.5.7 (2015-03-02)
-------------------
## v1.5.7 (2015-03-02)
-
Update Berksfile to use
[
https://supermarket.chef.io
](
https://supermarket.chef.io
)
-
Update the
`CONTRIBUTING.md`
file with new URLs and information
-
Update copyright date and email addresses in
`README.md`
-
Change 'Opscode, Inc.' to 'Chef Software, Inc.' where appropriate
-
[
#24
](
https://github.com/chef-cookbooks/erlang/issues/24
)
- Add yum-epel recipe to install prereqs for erlang.
v1.5.6 (2014-07-29)
-------------------
## v1.5.6 (2014-07-29)
-
[
#16
](
https://github.com/chef-cookbooks/erlang/issues/16
)
- Allow for systems with that do not have lsb installed
v1.5.4 (2014-04-30)
-------------------
## v1.5.4 (2014-04-30)
-
[COOK-4610] - New APT repository for ESL
v1.5.2 (2014-03-18)
-------------------
## v1.5.2 (2014-03-18)
-
[COOK-4296] Add an attribute for passing CFLAGS prior to compilation
v1.5.0 (2014-02-25)
-------------------
## v1.5.0 (2014-02-25)
[COOK-4296] - Add custom build flags when building from source
v1.4.2
------
## v1.4.2
COOK-4155, use a version in version conditional
v1.4.0
------
Porting to use cookbook yum ~> 3.0
Moving tests from minitest to bats
Fixing style against rubocop
## v1.4.0
Porting to use cookbook yum ~> 3.0 Moving tests from minitest to bats Fixing style against rubocop
v1.3.6
------
## v1.3.6
fixing metadata version error. locking to 3.0
v1.3.4
------
## v1.3.4
Locking yum dependency to '< 3'
v1.3.2
------
## v1.3.2
### New Feature
-
**[COOK-2915](https://tickets.opscode.com/browse/COOK-2915)**
- Debian codename override
v1.3.0
------
## v1.3.0
-
Add support for Test Kitchen 1.0
### Bug
...
...
@@ -97,19 +83,15 @@ v1.3.0
### Improvement
-
[COOK-2509]: Add support for installing Erlang/OTP from Erlang Solutions' repositories
v1.2.0
------
## v1.2.0
-
[COOK-2287] - Add support for installing Erlang from source
v1.1.2
------
## v1.1.2
-
[COOK-1215] - Support Amazon Linux in erlang cookbook
-
[COOK-1884] - Erlang Readme does not reflect cookbook requirements
v1.1.0
------
## v1.1.0
-
[COOK-1782] - Add test kitchen support
v1.0.0
------
## v1.0.0
-
[COOK-905] - Fix installation on RHEL/CentOS 6+
metadata.rb
View file @
4f3fb1ae
...
...
@@ -4,7 +4,7 @@ maintainer_email 'cookbooks@chef.io'
license
'Apache 2.0'
description
'Installs erlang, optionally install GUI tools.'
long_description
IO
.
read
(
File
.
join
(
File
.
dirname
(
__FILE__
),
'README.md'
))
version
'2.0.
0
'
version
'2.0.
1
'
depends
'apt'
,
'>= 1.7.0'
depends
'yum'
,
'~> 3.0'
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment