Skip to content

Commit

Permalink
update docs changelog and .semver
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Campanario committed May 3, 2024
1 parent efeacdb commit bddd6b0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .semver
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
:major: 1
:major: 2
:minor: 0
:patch: 0
:patch: 1
:special: ''
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions Docs/Documentation/CakePHP-Docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -46,7 +46,7 @@ services:
launch container

```
$> docker-compose up -d
$> docker compose up -d
```

go to http://localhost:9099/
4 changes: 2 additions & 2 deletions Docs/Documentation/How-to-Use.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ Create file *resources/js/Components/Pages/Dashboard.vue* that would look like t

```
<script setup>
import Layout from '../Layout'
import Layout from '@/Components/Layout.vue'
import { Head } from '@inertiajs/vue3'
import {onMounted} from "vue";
import { onMounted, onUnmounted, ref } from 'vue'
defineProps({
csrfToken: String,
Expand Down

0 comments on commit bddd6b0

Please sign in to comment.