Skip to content

Commit f2955e3

Browse files
Merge pull request #29 from MarcinOrlowski/dev
Release 3.0.1
2 parents a406462 + f65c653 commit f2955e3

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

CHANGES.md

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ See [compatibility docs](docs/compatibility.md) for details about backward compa
66

77
## CHANGE LOG ##
88

9+
* v3.0.1 (2017-02-23)
10+
* Updated `composer.json` to list `laravel/framework` among requirements
11+
912
* v3.0.0 (2017-02-23)
1013
* **BACKWARD INCOMPATIBILE CHANGES**
1114
* [RB-17] `success()` now allows to return API code as well

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "marcin-orlowski/laravel-api-response-builder",
33
"description": "Helps building nice, normalized and easy to consume REST API responses.",
44
"homepage": "https://github.com/MarcinOrlowski/laravel-api-response-builder",
5-
"version": "3.0.0",
5+
"version": "3.0.1",
66
"keywords": [
77
"laravel",
88
"json",
@@ -23,7 +23,8 @@
2323
"issues": "https://github.com/MarcinOrlowski/laravel-api-response-builder/issues"
2424
},
2525
"require": {
26-
"php": ">=5.5.9"
26+
"php": ">=5.5.9",
27+
"laravel/framework": "^5.1"
2728
},
2829
"autoload": {
2930
"psr-4": {
@@ -42,7 +43,6 @@
4243
"phpunit/php-code-coverage": "^2.2.4",
4344
"mockery/mockery": "^0.9.8",
4445
"orchestra/testbench": "~3.1",
45-
"laravel/framework": "^5.1",
4646
"codacy/coverage": "^1.0"
4747
}
4848
}

docs/compatibility.md

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22

33
`ResponseBuilder` follows [Semantic Versioning](http://semver.org/).
44

5-
You need to worry about backward compatibility if you are upgrading from previous major version of the package.
6-
75
### v3 ###
86

97
* `success()` now accepts (optional) `api_code` too, therefore signature of this method as well as and argument

0 commit comments

Comments
 (0)