diff --git a/CHANGELOG.md b/CHANGELOG.md index d4bf2cf1..72af4cde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ The complete changelog for the Costs to Expect REST API, our changelog follows the format defined at https://keepachangelog.com/en/1.0.0/ +## [v2.18.0] - 2021-01-27 +### Added +- We have opened up registration on the API; you can register, login, and use all the expected authentication features. +- We have added notification emails for registration and forgot password requests. + +### Changed +- We have switched to Laravel Sanctum and removed all references to Laravel Passport, Sanctum makes more sense for our API. +- We have updated to Laravel version 8. +- We have tweaked our Docker setup and removed composer and phpunit. +- Content updates + ## [v2.17.1] - 2020-11-28 ### Changed - We have added the `X-Last-Updated` header to the `resource-types`, `resources`, `categories`, `subcategories`, `items` and `resource items` collection routes. diff --git a/config/api/app/version.php b/config/api/app/version.php index 86698ab8..27ffe213 100644 --- a/config/api/app/version.php +++ b/config/api/app/version.php @@ -3,9 +3,9 @@ declare(strict_types=1); return [ - 'version'=> 'v2.17.1', + 'version'=> 'v2.18.0', 'prefix' => 'v2', - 'release_date' => '2020-11-28', + 'release_date' => '2021-01-27', 'changelog' => [ 'api' => '/v2/changelog', 'markdown' => 'https://github.com/costs-to-expect/api/blob/master/CHANGELOG.md' diff --git a/resources/views/documentation.blade.php b/resources/views/documentation.blade.php index c466d7b1..2396dfe6 100644 --- a/resources/views/documentation.blade.php +++ b/resources/views/documentation.blade.php @@ -142,8 +142,8 @@ function gtag(){dataLayer.push(arguments);}

Our documentation is available at https://postman.costs-to-expect.com.

-

We will ensure that all our docs are always be up to date; - the docs will always refer to the released live version +

We will ensure that our docs are always up to date; + the docs will always refer to the live version of the API.

In addition to the published documentation, we include diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index af18f94d..e6cbe8b8 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -225,16 +225,17 @@ function gtag(){dataLayer.push(arguments);}

Added

-

Fixed

+

Changed