From 6aadc85062425100dcc057bd00db46ae4c848aff Mon Sep 17 00:00:00 2001 From: Kasper Garnaes Date: Tue, 9 Sep 2014 09:07:06 +0200 Subject: [PATCH] Release 2.5.0 --- CHANGES | 7 +++++++ README.md | 8 ++++---- wsdl2php.php | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index fe09b8dc..6695f119 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,11 @@ +2.5.0 / 2014-09-09 +================== + + * Support method chaining for setters when using the createAccessors option. + * Avoid empty comments and unnecessary new line after description. + * Fixed path to composer autoloader when included in a composer.json from another project. + 2.4.2 / 2014-08-13 ================== diff --git a/README.md b/README.md index b314e254..53888839 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Uses the [MIT licence](http://www.opensource.org/licenses/mit-license.php). ## Contributors Originally developed by [@walle](https://github.com/walle) and includes bugfixes and improvements from [@vakopian](https://github.com/vakopian), [@statikbe](https://github.com/statikbe/), [@ecolinet](https://github.com/ecolinet), [@nuth](https://github.com/nuth/), [@chriskl](https://github.com/chriskl/), [@RSully](https://github.com/RSully/), [@jrbasso](https://github.com/jrbasso/), -[@dypa](https://github.com/dypa/), [@Lafriks](https://github.com/Lafriks/) and [@kasperg](https://github.com/kasperg/). +[@dypa](https://github.com/dypa/), [@Lafriks](https://github.com/Lafriks/), [@SamMousa](https://github.com/SamMousa/), [@garex](https://github.com/garex/) and [@kasperg](https://github.com/kasperg/). Pull requests are very welcome. Please read [our guidelines for contributing](https://github.com/wsdl2phpgenerator/wsdl2phpgenerator/blob/master/CONTRIBUTING.md). @@ -24,8 +24,8 @@ There is a mailing list for the project at [https://groups.google.com/forum/#!fo ### Standalone executable -1. Download [wsdl2phpgenerator-2.4.2.phar](https://github.com/wsdl2phpgenerator/wsdl2phpgenerator/releases/download/2.4.2/wsdl2phpgenerator-2.4.2.phar) from [the latest release](https://github.com/wsdl2phpgenerator/wsdl2phpgenerator/releases/latest) -1. Run `php wsdl2phpgenerator-2.4.2.phar -i input.wsdl -o tmp/my/directory/wsdl` +1. Download [wsdl2phpgenerator-2.5.0.phar](https://github.com/wsdl2phpgenerator/wsdl2phpgenerator/releases/download/2.5.0/wsdl2phpgenerator-2.5.0.phar) from [the latest release](https://github.com/wsdl2phpgenerator/wsdl2phpgenerator/releases/latest) +1. Run `php wsdl2phpgenerator-2.5.0.phar -i input.wsdl -o tmp/my/directory/wsdl` The directory is created if possible. @@ -34,7 +34,7 @@ Usage is listed under `./wsdl2php -h` ### Executable in Composer project -1. Add `"wsdl2phpgenerator/wsdl2phpgenerator": "2.4.2"` to the `require` or `require-dev` section of your `composer.json` file +1. Add `"wsdl2phpgenerator/wsdl2phpgenerator": "2.5.0"` to the `require` or `require-dev` section of your `composer.json` file 1. Run `composer update` 1. Run `./vendor/bin/wsdl2php -i input.wsdl -o tmp/my/directory/wsdl` diff --git a/wsdl2php.php b/wsdl2php.php index afc74733..042a588e 100644 --- a/wsdl2php.php +++ b/wsdl2php.php @@ -15,7 +15,7 @@ require __DIR__ . '/../../autoload.php'; } -$app = new Application('wsdl2php', '2.4.2'); +$app = new Application('wsdl2php', '2.5.0'); $command = new GenerateCommand(); $command->setGenerator(Generator::getInstance()); $app->add($command);