Skip to content

Commit

Permalink
Release 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kasperg committed Sep 9, 2014
1 parent ed34b12 commit 6aadc85
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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
==================

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand All @@ -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.

Expand All @@ -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`

Expand Down
2 changes: 1 addition & 1 deletion wsdl2php.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 6aadc85

Please sign in to comment.