Skip to content

Commit

Permalink
Update changelog and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Rockstar04 committed Jul 6, 2015
1 parent aed6ac4 commit 7f1dc07
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ php Cookbook CHANGELOG
======================
This file is used to list changes made in each version of the php cookbook.

v1.6.0 (2015-7-6)
-----------------
- Added ChefSpec matchers
- Added basic PHP-FPM Support (Pre-Release)
- Added support for FreeBSD
- Updated cookbook to use MySQL 6.0 cookbook
- Update cookbook to use php5enmod on supported platforms
- Allow users to override php-mysql package

v1.5.0 (2014-10-06)
-------------------
- Adding package_options attribute, utilizing in package resource
Expand Down
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
maintainer_email 'cookbooks@getchef.com'
license 'Apache 2.0'
description 'Installs and maintains php and php modules'
version '1.5.0'
version '1.6.0'

depends 'build-essential'
depends 'xml'
Expand Down

8 comments on commit 7f1dc07

@Sauraus
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When is this version going to be uploaded to supermarket?

@Rockstar04
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is an excellent question, I was given access to the GitHub repo, but I cant push the releases to the Supermarket.

@signe
Copy link

@signe signe commented on 7f1dc07 Jul 14, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also waiting on this before doing a production release, to get rid of ubuntu workarounds.

@Rockstar04
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@signe What work arounds do you have in place? Are the changes in 1.6.0 going to be enough? I am planning a 1.7.0 release that will try to tackle ubuntu's mutiple configuration file issue (different configs for cli, fpm, cgi, and apache)

@signe
Copy link

@signe signe commented on 7f1dc07 Jul 14, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is an example of how I have it running in ubuntu at the moment:

# This is required, or php_pear LWRPs fail
link '/etc/php5/conf.d' do
    to      '/etc/php5/mods-available'
    action      :create
end

php_pear 'mailparse' do
    action      :install
end

execute 'php5enmod_cli_mailparse' do
    command     'php5enmod -s cli mailparse'
    not_if      'php5query -q -s cli -m mailparse'
    only_if     { ::File.exists?('/etc/php5/mods-available/mailparse.ini') }
end

@someara
Copy link

@someara someara commented on 7f1dc07 Jul 16, 2015 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Rockstar04
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@someara Awesome thanks!

@Rockstar04
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well that was a terrible learning experience, I pushed from the wrong repo, and had to bump the tag again to push the correct change, sorry about that everyone. Supermarket (and stove) is compelely new to me.

Please sign in to comment.