8000 [Docs] Update changelog and bump version · tekord/laravel-json-api@86ffc41 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Feb 17, 2023. It is now read-only.

Commit 86ffc41

Browse files
committed
[Docs] Update changelog and bump version
1 parent 3db437e commit 86ffc41

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
All notable changes to this project will be documented in this file. This project adheres to
33
[Semantic Versioning](http://semver.org/) and [this changelog format](http://keepachangelog.com/).
44

5-
## Unreleased
5+
## [1.0.0-alpha.3] - 2018-05-17
66

77
### Added
88
- Errors that occur *before* a route is processed by a JSON API are now sent to the client as JSON API

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ A demo application is available at [here](https://github.com/cloudcreativity/dem
2727

2828
| Laravel | This Package |
2929
| --- | --- |
30-
| 5.4.* | `1.0.0-alpha.2` |
31-
| 5.5.* | `1.0.0-alpha.2` |
32-
| 5.6.* | `1.0.0-alpha.2` |
30+
| 5.4.* | `1.0.0-alpha.3` |
31+
| 5.5.* | `1.0.0-alpha.3` |
32+
| 5.6.* | `1.0.0-alpha.3` |
3333

3434
Make sure you consult the [Upgrade Guide](http://laravel-json-api.readthedocs.io/en/latest/upgrade/) when upgrading.
3535

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Install using [Composer](http://getcomposer.org):
66

77
``` bash
8-
$ composer require cloudcreativity/laravel-json-api:1.0.0-alpha.2
8+
$ composer require cloudcreativity/laravel-json-api:1.0.0-alpha.3
99
$ composer require --dev cloudcreativity/json-api-testing
1010
```
1111

@@ -17,7 +17,7 @@ need to follow the instructions below for updating your `ExceptionHandler`.
1717
Install using [Composer](http://getcomposer.org):
1818

1919
``` bash
20-
$ composer require cloudcreativity/laravel-json-api:1.0.0-alpha.2
20+
$ composer require cloudcreativity/laravel-json-api:1.0.0-alpha.3
2121
$ composer require --dev cloudcreativity/json-api-testing
2222
```
2323

src/Eloquent/AbstractAdapter.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
use CloudCreativity\LaravelJsonApi\Contracts\Adapter\HasManyAdapterInterface;
2323
use CloudCreativity\LaravelJsonApi\Contracts\Adapter\RelationshipAdapterInterface;
2424
use CloudCreativity\LaravelJsonApi\Contracts\Object\RelationshipInterface;
25-
use CloudCreativity\LaravelJsonApi\Contracts\Object\RelationshipsInterface;
2625
use CloudCreativity\LaravelJsonApi\Contracts\Object\ResourceObjectInterface;
2726
use CloudCreativity\LaravelJsonApi\Contracts\Pagination\PageInterface;
2827
use CloudCreativity\LaravelJsonApi\Contracts\Pagination\PagingStrategyInterface;

src/Encoder/Encoder.php 8000

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
use CloudCreativity\LaravelJsonApi\Contracts\Encoder\SerializerInterface;
2222
use CloudCreativity\LaravelJsonApi\Factories\Factory;
2323
use Neomerx\JsonApi\Encoder\Encoder as BaseEncoder;
24-
use Neomerx\JsonApi\Encoder\EncoderOptions;
2524
use Neomerx\JsonApi\Encoder\Serialize\ArraySerializerTrait;
2625

2726
/**

tests/dummy/app/Http/Controllers/Controller.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717

1818
namespace DummyApp\Http\Controllers;
1919

20+
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
2021
use Illuminate\Foundation\Bus\DispatchesJobs;
21-
use Illuminate\Routing\Controller as BaseController;
2222
use Illuminate\Foundation\Validation\ValidatesRequests;
23-
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
23+
use Illuminate\Routing\Controller as BaseController;
2424

2525
class Controller extends BaseController
2626
{

0 commit comments

Comments
 (0)
0