diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd559b..051c498 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,30 @@ The complete changelog for the Costs to Expect REST API, our changelog follows the format defined at https://keepachangelog.com/en/1.0.0/ +## [1.04.0] - [2023-10-12] +### Added +- Added full account deletion. +- Added a getting started section for new sign-ups, allows the user to create players and begin a game in one go. +### Changed +- Updated Yahtzee account deletion, uses the API to delete the account rather than brute force. +- Switched to action and view controllers. +- Automatically sign-in the user after password creation. +- Switched to the support@costs-to-expect.com email and removed Twitter from footer. +- Updated content throughout the app. +- Updated to Laravel 10 +- Updated to Boostrap 5.3 +- Updated to PHP8.2 + +## [v1.03.0] - [2023-07-03] +### Added +- Added Budget Pro to the footer +### Changed +- Updated the example ENV file +- Updated dependencies +- Set version and release date +### Fixed +- Corrected a link + ## [1.02.0] - [2023-01-30] ### Changed - Updated authentication to match recent changes to the Costs to Expect API. diff --git a/config/app/config.php b/config/app/config.php index 3e3b2ba..4f33492 100644 --- a/config/app/config.php +++ b/config/app/config.php @@ -11,6 +11,6 @@ 'error_email' => env('ERROR_EMAIL'), 'cookie_user' => env('SESSION_NAME_USER'), 'cookie_bearer' => env('SESSION_NAME_BEARER'), - 'version' => '1.03.0', - 'release_date' => '2nd July 2023' + 'version' => '1.04.0', + 'release_date' => '12th October 2023' ];