Skip to content

Commit

Permalink
Merge pull request #271 from deanblackborough/master
Browse files Browse the repository at this point in the history
Namespace
  • Loading branch information
deanblackborough authored Aug 10, 2023
2 parents 4e72e26 + 11da962 commit 130171f
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

The complete changelog for the Costs to Expect REST API, our changelog follows the format defined at https://keepachangelog.com/en/1.0.0/

## [v3.15.1] - 2023-08-10
### Fixed
- Corrected the namespace for some tests.

## [v3.15.0] - 2023-08-09
### Added
- Added a deleted field to Budget pro items, this field means we can reduce what we pull down for the Budget.
Expand Down
4 changes: 2 additions & 2 deletions config/api/app/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
declare(strict_types=1);

return [
'version'=> 'v3.15.0',
'version'=> 'v3.15.1',
'prefix' => 'v3',
'release_date' => '2023-08-09',
'release_date' => '2023-08-10',
'changelog' => [
'api' => '/v3/changelog',
'markdown' => 'https://github.com/costs-to-expect/api/blob/master/CHANGELOG.md'
Expand Down
3 changes: 1 addition & 2 deletions tests/Action/Http/Controllers/ItemAllocatedExpenseTest.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?php

namespace Http\Controllers;
namespace Tests\Action\Http\Controllers;

use App\User;
use Illuminate\Support\Str;
use Tests\TestCase;

final class ItemAllocatedExpenseTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Action/Http/Controllers/ItemBudgetProTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Http\Controllers;
namespace Tests\Action\Http\Controllers;

use App\User;
use Illuminate\Support\Str;
Expand Down
2 changes: 1 addition & 1 deletion tests/Action/Http/Controllers/ItemBudgetTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Http\Controllers;
namespace Tests\Action\Http\Controllers;

use App\User;
use Illuminate\Support\Str;
Expand Down
2 changes: 1 addition & 1 deletion tests/Action/Http/Controllers/ItemGameTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Http\Controllers;
namespace Tests\Action\Http\Controllers;

use App\User;
use Illuminate\Support\Str;
Expand Down
2 changes: 1 addition & 1 deletion tests/View/Http/Controllers/ItemAllocatedExpenseTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Http\Controllers;
namespace Tests\View\Http\Controllers;

use App\User;
use Tests\TestCase;
Expand Down
2 changes: 1 addition & 1 deletion tests/View/Http/Controllers/ItemBudgetProTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Http\Controllers;
namespace Tests\View\Http\Controllers;

use App\User;
use Tests\TestCase;
Expand Down
2 changes: 1 addition & 1 deletion tests/View/Http/Controllers/ItemBudgetTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Http\Controllers;
namespace Tests\View\Http\Controllers;

use App\User;
use Tests\TestCase;
Expand Down
2 changes: 1 addition & 1 deletion tests/View/Http/Controllers/ItemGameTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Http\Controllers;
namespace Tests\View\Http\Controllers;

use App\User;
use Tests\TestCase;
Expand Down

0 comments on commit 130171f

Please sign in to comment.