Skip to content

Commit 4a0131e

Browse files
committed
Merge remote-tracking branch 'remotes/master/master'
2 parents 8628be4 + a6a4335 commit 4a0131e

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Removed
1515

1616

17-
## [3.0] - unreleased
17+
## [3.0] - Sunday, 21 October 2018
1818
### Added
1919
- Official Lumen support (https://github.com/mpociot/laravel-apidoc-generator/pull/382)
2020
- `@queryParam` annotation (https://github.com/mpociot/laravel-apidoc-generator/pull/383)
2121
- `@bodyParam` annotation (https://github.com/mpociot/laravel-apidoc-generator/pull/362, https://github.com/mpociot/laravel-apidoc-generator/pull/366)
2222
- `@authenticated` annotation (https://github.com/mpociot/laravel-apidoc-generator/pull/369)
2323
- Ability to override the controller `@group` from the method. (https://github.com/mpociot/laravel-apidoc-generator/pull/372)
24+
- Ability to use a custom logo (https://github.com/mpociot/laravel-apidoc-generator/pull/368)
2425

2526
### Changed
2627
- Moved from command-line options to a config file (https://github.com/mpociot/laravel-apidoc-generator/pull/362)
2728
- Commands have been renamed to the `apidoc` namespace (previously `api`). (https://github.com/mpociot/laravel-apidoc-generator/pull/350)
2829
- The `update` command has been renamed to `rebuild` and now uses the output path configured in the config file. (https://github.com/mpociot/laravel-apidoc-generator/pull/370)
2930
- `@resource` renamed to `@group` (https://github.com/mpociot/laravel-apidoc-generator/pull/371)
31+
- Added more configuration options for response calls (https://github.com/mpociot/laravel-apidoc-generator/pull/377)
3032

3133
### Fixed
3234

3335
### Removed
36+
- FormRequest parsing is no longer supported (https://github.com/mpociot/laravel-apidoc-generator/pull/362)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Automatically generate your API documentation from your existing Laravel/Lumen/[
1717
> Note: PHP 7 and Laravel 5.5 or higher are required.
1818
1919
```sh
20-
$ composer require mpociot/laravel-apidoc-generator:dev-master
20+
$ composer require mpociot/laravel-apidoc-generator
2121
```
2222

2323
### Laravel

resources/views/partials/route.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
Parameter | Status | Description
8585
--------- | ------- | ------- | -----------
8686
@foreach($route['queryParameters'] as $attribute => $parameter)
87-
{{$attribute}} | @if($parameter['required']) required @else optional @endif | {!! implode(' ',$parameter['description']) !!}
87+
{{$attribute}} | @if($parameter['required']) required @else optional @endif | {!! $parameter['description'] !!}
8888
@endforeach
8989
@endif
9090

0 commit comments

Comments
 (0)