Skip to content

Commit 598eac9

Browse files
authored
Merge pull request #16290 from niden/5.0.x
5.2.0 prep
2 parents 0b29ba6 + 00f9491 commit 598eac9

File tree

9 files changed

+71
-53
lines changed

9 files changed

+71
-53
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.4
22+
PHALCON_VERSION: 5.2.0
2323
ZEPHIR_PARSER_VERSION: 1.5.3
2424
ZEPHIR_VERSION: 0.17.0
2525

CHANGELOG-5.0.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
# Changelog
22

3-
## [5.1.5](https://github.com/phalcon/cphalcon/releases/tag/v5.1.4) (xxxx-xx-xx)
3+
## [5.2.0](https://github.com/phalcon/cphalcon/releases/tag/v5.2.0) (2023-02-26)
44

55
### Fixed
66

77
- Fixed `Phalcon\Html\Helper\Title::prepend` to correctly prepend text in subsequent calls [#16283](https://github.com/phalcon/cphalcon/issues/16283)
88

9+
### Added
10+
11+
- Added support for PHP 8.2 [#15973](https://github.com/phalcon/cphalcon/issues/15973)
12+
913
## [5.1.4](https://github.com/phalcon/cphalcon/releases/tag/v5.1.4) (2023-01-10)
1014

1115
### Fixed

build/phalcon/phalcon.zep.c

Lines changed: 51 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/phalcon/php_phalcon.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ typedef zend_function zephir_fcall_cache_entry;
103103

104104

105105
#define PHP_PHALCON_NAME "phalcon"
106-
#define PHP_PHALCON_VERSION "5.1.4"
106+
#define PHP_PHALCON_VERSION "5.2.0"
107107
#define PHP_PHALCON_EXTNAME "phalcon"
108108
#define PHP_PHALCON_AUTHOR "Phalcon Team and contributors"
109-
#define PHP_PHALCON_ZEPVERSION "0.16.3-5099f34"
109+
#define PHP_PHALCON_ZEPVERSION "0.17.0-9f99da6"
110110
#define PHP_PHALCON_DESCRIPTION "Phalcon is a full stack PHP framework, delivered as a PHP extension, offering lower resource consumption and high performance."
111111

112112
typedef struct _zephir_struct_db {

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.4",
6+
"version": "5.2.0",
77
"verbose": false,
88
"stubs": {
99
"path": "ide\/%version%\/%namespace%\/",

ext/phalcon/support/version.zep.c

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ext/php_phalcon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "kernel/globals.h"
1212

1313
#define PHP_PHALCON_NAME "phalcon"
14-
#define PHP_PHALCON_VERSION "5.1.4"
14+
#define PHP_PHALCON_VERSION "5.2.0"
1515
#define PHP_PHALCON_EXTNAME "phalcon"
1616
#define PHP_PHALCON_AUTHOR "Phalcon Team and contributors"
1717
#define PHP_PHALCON_ZEPVERSION "0.17.0-9f99da6"

package.xml

Lines changed: 7 additions & 4 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>2023-01-10</date>
25+
<date>2023-02-26</date>
2626
<time>17:00:00</time>
2727
<version>
28-
<release>5.1.4</release>
29-
<api>5.1.4</api>
28+
<release>5.2.0</release>
29+
<api>5.2.0</api>
3030
</version>
3131
<stability>
3232
<release>stable</release>
@@ -37,7 +37,10 @@
3737
Full changelog can be found at: https://github.com/phalcon/cphalcon/blob/master/CHANGELOG-5.0.md
3838

3939
### Fixed
40-
- Fixed `Phalcon\Acl\Adapter\Memory::isAllowed` to not use the deprecated `ReflectionType::getClass` [#16255](https://github.com/phalcon/cphalcon/issues/16255)
40+
- Fixed `Phalcon\Html\Helper\Title::prepend` to correctly prepend text in subsequent calls [#16283](https://github.com/phalcon/cphalcon/issues/16283)
41+
42+
### Added
43+
- Added support for PHP 8.2 [#15973](https://github.com/phalcon/cphalcon/issues/15973)
4144

4245
</notes>
4346
<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, 4, 4, 0];
80+
return [5, 2, 0, 4, 0];
8181
}
8282

8383
/**

0 commit comments

Comments
 (0)