Skip to content
This repository has been archived by the owner on Jun 18, 2019. It is now read-only.

Commit

Permalink
Updated changelog, readme and added assertion so that phpunit won't c…
Browse files Browse the repository at this point in the history
…omplaint.
  • Loading branch information
dimsav committed Sep 1, 2017
1 parent b50224e commit 8018718
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changelog.md
@@ -1,5 +1,9 @@
## Version History

### v. 8.0

- Added support for Laravel 5.5 #394

### v. 7.3

- Added compatibility with custom db connections. #366
Expand Down
1 change: 1 addition & 0 deletions readme.md
Expand Up @@ -72,6 +72,7 @@ This is a Laravel package for translatable models. Its goal is to remove the com

Laravel | Translatable
:---------|:----------
5.5 | 8.0
5.4 | 7.*
5.3 | 6.*
5.2 | 5.5 - 6.*
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCoreModelExtension.php
Expand Up @@ -160,7 +160,7 @@ public function test_to_array_wont_break_if_no_translations_exist()
{
$country = new Country(['code' => 'test']);
$country->save();
$country->toArray();
$this->assertArrayHasKey('code', $country->toArray());
}

// Forms
Expand Down

0 comments on commit 8018718

Please sign in to comment.