Skip to content

Commit

Permalink
chore: Version 7.0 release.
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Gaspar <[email protected]>
  • Loading branch information
brunogaspar committed Oct 3, 2018
1 parent d5c9204 commit 6ec7a84
Show file tree
Hide file tree
Showing 15 changed files with 31 additions and 18 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ We do not give estimated times for completion on `Accepted` Proposals.

---

### v7.0.0 - 2018-10-03

`ADDED`

- Laravel 5.7 support.

`REMOVED`

- Laravel 5.6 support.

### v6.0.1 - 2018-04-04

`FIXED`
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Tags

[![Build Status](https://travis-ci.org/cartalyst/tags.svg?branch=6.0)](https://travis-ci.org/cartalyst/tags)
[![Build Status](https://travis-ci.org/cartalyst/tags.svg?branch=7.0)](https://travis-ci.org/cartalyst/tags)

A Tagging package that easily allows you to add tags to your Eloquent models.

Expand All @@ -19,17 +19,19 @@ Tags | Laravel
[4.0.x](https://github.com/cartalyst/tags/tree/4.0) | 5.4
[5.0.x](https://github.com/cartalyst/tags/tree/5.0) | 5.5
[6.0.x](https://github.com/cartalyst/tags/tree/6.0) | 5.6
[7.0.x](https://github.com/cartalyst/tags/tree/7.0) | 5.7

## Documentation

Reader-friendly Documentation can be found [here](https://cartalyst.com/manual/tags/6.0).
Reader-friendly Documentation can be found [here](https://cartalyst.com/manual/tags/7.0).

Raw files can be found [here](https://github.com/cartalyst/tags/tree/docs/6.0).
Raw files can be found [here](https://github.com/cartalyst/tags/tree/docs/7.0).

## Change Log

Important versions listed below. Refer to the [Change Log](CHANGELOG.md) for a full history of the project.

- [7.0](CHANGELOG.md) - 2018-10-03
- [6.0](CHANGELOG.md) - 2018-02-07
- [5.0](CHANGELOG.md) - 2017-08-30
- [4.0](CHANGELOG.md) - 2017-01-30
Expand Down
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@
],
"require": {
"php": ">=7.1.3",
"illuminate/database": "5.6.*"
"illuminate/database": "5.7.*"
},
"require-dev": {
"orchestra/testbench": "^3.6",
"orchestra/testbench": "^3.7",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
Expand All @@ -36,7 +37,7 @@
"extra": {
"component": "package",
"branch-alias": {
"dev-master": "6.0.x-dev"
"dev-master": "7.0.x-dev"
},
"laravel": {
"providers": [
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
<directory suffix=".php">./src/</directory>
<exclude>
<file>./src/TagsServiceProvider.php</file>
</exclude>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/IlluminateTag.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/IlluminateTagged.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/TaggableInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/TaggableTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion src/TagsServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/FunctionalTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/IlluminateTagTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/Stubs/Post.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/Stubs/Post2.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down
2 changes: 1 addition & 1 deletion tests/TaggableTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* bundled with this package in the LICENSE file.
*
* @package Tags
* @version 6.0.1
* @version 7.0.0
* @author Cartalyst LLC
* @license BSD License (3-clause)
* @copyright (c) 2011-2018, Cartalyst LLC
Expand Down

0 comments on commit 6ec7a84

Please sign in to comment.