From 0e3d952a4889d839c640b0af25e2c583fd2ee78f Mon Sep 17 00:00:00 2001 From: Fenixphp Date: Wed, 5 Apr 2017 19:27:32 +0300 Subject: [PATCH 1/3] Fix initialization home directory in Windows batch file. --- phalcon.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phalcon.bat b/phalcon.bat index b33c7b5cc..810bea040 100644 --- a/phalcon.bat +++ b/phalcon.bat @@ -1,4 +1,4 @@ @echo off -set PTOOLSPATH="%~dp0\" +set PTOOLSPATH=%~dp0 php %PTOOLSPATH%phalcon.php %* \ No newline at end of file From e7308bc592004469fa9ccc2a83bcd750a9de4c11 Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Wed, 5 Apr 2017 20:21:21 +0300 Subject: [PATCH 2/3] Updated IDE stubs --- ide/stubs/Phalcon/queue/Beanstalk.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/stubs/Phalcon/queue/Beanstalk.php b/ide/stubs/Phalcon/queue/Beanstalk.php index 138d3a3d4..158d12dbb 100644 --- a/ide/stubs/Phalcon/queue/Beanstalk.php +++ b/ide/stubs/Phalcon/queue/Beanstalk.php @@ -250,7 +250,7 @@ public function read($length = 0) {} * @param string $data * @return bool|int */ - protected function write($data) {} + public function write($data) {} /** * Closes the connection to the beanstalk server. From de593268ac8031ee8e58211f2679825367092865 Mon Sep 17 00:00:00 2001 From: Serghei Iakovlev Date: Wed, 5 Apr 2017 20:23:49 +0300 Subject: [PATCH 3/3] Bump version --- scripts/Phalcon/Devtools/Version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Phalcon/Devtools/Version.php b/scripts/Phalcon/Devtools/Version.php index daf6bf18a..2a10d2b5b 100644 --- a/scripts/Phalcon/Devtools/Version.php +++ b/scripts/Phalcon/Devtools/Version.php @@ -39,6 +39,6 @@ class Version extends PhVersion */ protected static function _getVersion() { - return [3, 1, 1, 4, 0]; + return [3, 1, 2, 4, 0]; } }