Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjikobe committed Nov 13, 2012
1 parent cec76e5 commit 796695e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion build/phalcon.c
Original file line number Diff line number Diff line change
Expand Up @@ -45453,11 +45453,12 @@ PHP_METHOD(Phalcon_Version, _getVersion){
zval *version = NULL;

PHALCON_MM_GROW();

PHALCON_INIT_VAR(version);
array_init(version);
add_next_index_long(version, 0);
add_next_index_long(version, 5);
add_next_index_long(version, 2);
add_next_index_long(version, 3);
add_next_index_long(version, 4);
add_next_index_long(version, 0);

Expand Down
2 changes: 1 addition & 1 deletion build/php_phalcon.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

#define PHALCON_RELEASE 1

#define PHP_PHALCON_VERSION "0.5.2"
#define PHP_PHALCON_VERSION "0.5.3"
#define PHP_PHALCON_EXTNAME "phalcon"

#define PHALCON_MAX_MEMORY_STACK 48
Expand Down
4 changes: 2 additions & 2 deletions ext/php_phalcon.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef PHP_PHALCON_H
#define PHP_PHALCON_H 1

#define PHP_PHALCON_VERSION "0.5.2"
#define PHP_PHALCON_VERSION "0.5.3"
#define PHP_PHALCON_EXTNAME "phalcon"

#define PHALCON_MAX_MEMORY_STACK 48
Expand Down Expand Up @@ -74,4 +74,4 @@ extern zend_module_entry phalcon_module_entry;
# define PHALCON_FASTCALL __fastcall
#else
# define PHALCON_FASTCALL
#endif
#endif
3 changes: 2 additions & 1 deletion ext/version.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,12 @@ PHP_METHOD(Phalcon_Version, _getVersion){
zval *version = NULL;

PHALCON_MM_GROW();

PHALCON_INIT_VAR(version);
array_init(version);
add_next_index_long(version, 0);
add_next_index_long(version, 5);
add_next_index_long(version, 2);
add_next_index_long(version, 3);
add_next_index_long(version, 4);
add_next_index_long(version, 0);

Expand Down

0 comments on commit 796695e

Please sign in to comment.