diff --git a/CHANGELOG.md b/CHANGELOG.md index 5de19a2e..6a9673f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org). -## [Unreleased] +## 1.14.1 - 2018-11-17 #### Added @@ -12,7 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), #### Changed -* *Nothing* +* [#260](https://github.com/shlinkio/shlink/issues/260) Increased mutation score to 65%. #### Deprecated diff --git a/module/Core/test/Entity/VisitTest.php b/module/Core/test/Entity/VisitTest.php index c5daaad6..0687131a 100644 --- a/module/Core/test/Entity/VisitTest.php +++ b/module/Core/test/Entity/VisitTest.php @@ -4,9 +4,9 @@ declare(strict_types=1); namespace ShlinkioTest\Shlink\Core\Entity; use Cake\Chronos\Chronos; +use PHPUnit\Framework\TestCase; use Shlinkio\Shlink\Core\Entity\ShortUrl; use Shlinkio\Shlink\Core\Entity\Visit; -use PHPUnit\Framework\TestCase; use Shlinkio\Shlink\Core\Model\Visitor; class VisitTest extends TestCase diff --git a/module/Core/test/Exception/InvalidShortCodeExceptionTest.php b/module/Core/test/Exception/InvalidShortCodeExceptionTest.php index 4dca8e07..65fb858e 100644 --- a/module/Core/test/Exception/InvalidShortCodeExceptionTest.php +++ b/module/Core/test/Exception/InvalidShortCodeExceptionTest.php @@ -4,8 +4,8 @@ declare(strict_types=1); namespace ShlinkioTest\Shlink\Core\Exception; use Exception; -use Shlinkio\Shlink\Core\Exception\InvalidShortCodeException; use PHPUnit\Framework\TestCase; +use Shlinkio\Shlink\Core\Exception\InvalidShortCodeException; use Throwable; class InvalidShortCodeExceptionTest extends TestCase