Skip to content

Commit 6cd52bb

Browse files
committed
bumping version
1 parent 351e66f commit 6cd52bb

File tree

5 files changed

+9
-15
lines changed

5 files changed

+9
-15
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919

2020
env:
2121
# All versions should be declared here
22-
PHALCON_VERSION: 5.1.0
22+
PHALCON_VERSION: 5.1.1
2323
ZEPHIR_PARSER_VERSION: 1.5.1
2424
ZEPHIR_VERSION: 0.16.3
2525

CHANGELOG-5.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [5.1.1](https://github.com/phalcon/cphalcon/releases/tag/v5.1.1) (xxxx-xx-xx)
1+
# [5.1.1](https://github.com/phalcon/cphalcon/releases/tag/v5.1.1) (2022-11-12)
22

33
## Fixed
44
- Fixed `Phalcon\Filter::sanitize` to return correct data when `noRecursive` is `true` [#16199](https://github.com/phalcon/cphalcon/issues/16199)

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "phalcon",
44
"description": "Phalcon is a full stack PHP framework, delivered as a PHP extension, offering lower resource consumption and high performance.",
55
"author": "Phalcon Team and contributors",
6-
"version": "5.1.0",
6+
"version": "5.1.1",
77
"verbose": false,
88
"stubs": {
99
"path": "ide\/%version%\/%namespace%\/",

package.xml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
<email>nikos@phalcon.io</email>
2323
<active>yes</active>
2424
</lead>
25-
<date>2022-11-01</date>
25+
<date>2022-11-12</date>
2626
<time>17:00:00</time>
2727
<version>
28-
<release>5.1.0</release>
29-
<api>5.1.0</api>
28+
<release>5.1.1</release>
29+
<api>5.1.1</api>
3030
</version>
3131
<stability>
3232
<release>stable</release>
@@ -37,14 +37,8 @@
3737
Full changelog can be found at: https://github.com/phalcon/cphalcon/blob/master/CHANGELOG-5.0.md
3838

3939
## Fixed
40-
- Fixed `Phalcon\Mvc\View\Engine\Volt\Compiler::isTagFactory` to correctly detect a `TagFactory` object without throwing an error [#16097](https://github.com/phalcon/cphalcon/issues/16097)
41-
- Fixed default values for `Phalcon\Cli`, `Phalcon\Dispatcher` and `Phalcon\Application` components to ensure not `null` values are passed to methods [#16186](https://github.com/phalcon/cphalcon/issues/16186)
42-
- Fixed `Phalcon\Form::clear` to correctly clear the elements and not recurse [#15956](https://github.com/phalcon/cphalcon/issues/15956)
43-
44-
## Added
45-
- Added `Phalcon\Http\Request::getPatch()` to get a value from a PATCH request [#16188](https://github.com/phalcon/cphalcon/issues/16188)
46-
- Added `Phalcon\Http\Request::getFilteredPatch()` to get a value filtered from a PATCH request [#16188](https://github.com/phalcon/cphalcon/issues/16188)
47-
- Added `Phalcon\Http\Request::hasPatch()` to check if a value exist in a PATCH request [#16188](https://github.com/phalcon/cphalcon/issues/16188)
40+
- Fixed `Phalcon\Filter::sanitize` to return correct data when `noRecursive` is `true` [#16199](https://github.com/phalcon/cphalcon/issues/16199)
41+
- Fixed `Phalcon\Html\Escaper::html` to not return `null` when a zero string is passed [#16202](https://github.com/phalcon/cphalcon/issues/16202)
4842

4943
</notes>
5044
<contents>

phalcon/Support/Version.zep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class Version
7777
*/
7878
protected function getVersion() -> array
7979
{
80-
return [5, 1, 0, 4, 0];
80+
return [5, 1, 1, 4, 0];
8181
}
8282

8383
/**

0 commit comments

Comments
 (0)