Symfony 2.0.16 released
July 11, 2012 • Published by Fabien Potencier
Warning: Symfony 2.0 is no longer supported. Consider upgrading your applications to the most recent Symfony version.
Symfony 2.0.16 has just been released.
This version mainly fixes the PEAR packages (again). Twig has been updated to 1.8.3 and Swiftmailer to 4.2.0.
The CHANGELOG has all the details about the changes and you can even have a look at the full diff.
Some changes has also been made in the autoloader. Have a look at the diff or just replace the autoloading code for Swiftmailer with the following line:
require __DIR__.'/../vendor/swiftmailer/lib/swift_required.php';
If you are starting a new project, you can get the Symfony Standard Edition distribution on the download page.
If you already have a project based on the Symfony Standard Edition 2.0.x, you can easily upgrade to 2.0.16 by getting the new deps and deps.lock files.
Then, run the vendors script (it also clears your cache):
$ ./bin/vendors install
Remember that the Symfony2 Components are also available as standalone libraries. You can get them via their dedicated read-only repositories on Github (https://github.com/symfony/Finder for instance) or install them via Composer.
Help the Symfony project!
As with any Open-Source project, contributing code or documentation is the most common way to help, but we also have a wide range of sponsoring opportunities.
Comments are closed.
To ensure that comments stay relevant, they are closed for old posts.
Fatal error: Call to undefined method Assetic\Filter\CoffeeScriptFilter::setBare() in /app/cache/dev/appDevDebugProjectContainer.php on line 119
https://raw.github.com/symfony/symfony-standard/v2.0.16/deps.lock
The deps file has has twig 1.8.2 not 1.8.3
The deps file has symfony branch not the tag as version.
I think it was not your day fabien ;)
require __DIR__.'/../vendor/swiftmailer/lib/swift_required.php';
Then I hit the SwiftMailer bug (thanks for the tip on that).