Skip to content

Commit

Permalink
Release v5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
escribiendocodigo committed Aug 7, 2023
1 parent cd18d43 commit a0473a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@ Create the composer.json file as follows:
```json
{
"require-dev": {
"phalcon/devtools": "~4.1"
"phalcon/devtools": "~5.0"
}
}
```

If you are still using Phalcon 3.4.x, create a `composer.json` with the following instead:
If you are still using Phalcon 4.2.x, create a `composer.json` with the following instead:

```json
{
"require-dev": {
"phalcon/devtools": "^3.4"
"phalcon/devtools": "^4.2"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Version extends PhVersion
// phpcs:disable
protected function getVersion(): array

Check warning on line 28 in src/Version.php

View check run for this annotation

Codecov / codecov/patch

src/Version.php#L28

Added line #L28 was not covered by tests
{
return [5, 0, 0, 1, 1];
return [5, 0, 0, 0, 0];

Check warning on line 30 in src/Version.php

View check run for this annotation

Codecov / codecov/patch

src/Version.php#L30

Added line #L30 was not covered by tests
}
// phpcs:enable
}

0 comments on commit a0473a7

Please sign in to comment.