From bddd6b085a1d643169adf6b96edfb28264043264 Mon Sep 17 00:00:00 2001 From: Andres Campanario Date: Fri, 3 May 2024 12:48:14 +0200 Subject: [PATCH] update docs changelog and .semver --- .semver | 4 ++-- CHANGELOG.md | 7 +++++++ Docs/Documentation/CakePHP-Docker.md | 4 ++-- Docs/Documentation/How-to-Use.md | 4 ++-- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.semver b/.semver index b6ebb03..e0940c9 100644 --- a/.semver +++ b/.semver @@ -1,5 +1,5 @@ --- -:major: 1 +:major: 2 :minor: 0 -:patch: 0 +:patch: 1 :special: '' diff --git a/CHANGELOG.md b/CHANGELOG.md index b51a7ae..0b17a6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ Changelog Releases for CakePHP 5.0 ------------------------ +* 2.0.1 + * update Docs + * update app.js to use import (ES6) instead of require + * update bake files for controller to use NumericPaginator + * update bake files for Model to add functions: withRelated and BeforeMarshall + * add buildPaginationLinks on InertiaResponseTrait + * 2.0.0 * Initial release diff --git a/Docs/Documentation/CakePHP-Docker.md b/Docs/Documentation/CakePHP-Docker.md index f0602d6..4d74697 100644 --- a/Docs/Documentation/CakePHP-Docker.md +++ b/Docs/Documentation/CakePHP-Docker.md @@ -12,7 +12,7 @@ $> cp config/app_local.example.php config/app_local.php create docker-compose.yml file as ``` -version: '3' +version: '3.8' services: psql13: image: postgres:13 @@ -46,7 +46,7 @@ services: launch container ``` -$> docker-compose up -d +$> docker compose up -d ``` go to http://localhost:9099/ diff --git a/Docs/Documentation/How-to-Use.md b/Docs/Documentation/How-to-Use.md index db8222f..996e333 100644 --- a/Docs/Documentation/How-to-Use.md +++ b/Docs/Documentation/How-to-Use.md @@ -53,9 +53,9 @@ Create file *resources/js/Components/Pages/Dashboard.vue* that would look like t ```