Skip to content

Commit

Permalink
HPHP-2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Sara Golemon committed Apr 23, 2013
1 parent a85369c commit a3803ff
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion hphp/runtime/ext_hhvm/xconstants.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if (!defined('GLOBAL_SYMBOL_REDECLARED_FUNCTION')) {define('GLOBAL_SYMBOL_REDECLARED_FUNCTION', 5);}
if (!defined('GLOBAL_SYMBOL_STATIC_VARIABLE')) {define('GLOBAL_SYMBOL_STATIC_VARIABLE', 1);}
if (!defined('HPHP_TRIM_CHARLIST')) {define('HPHP_TRIM_CHARLIST', ' \n\r\t\v' . "\0" . '');}
if (!defined('HPHP_VERSION')) {define('HPHP_VERSION', '2.0.1');}
if (!defined('HPHP_VERSION')) {define('HPHP_VERSION', '2.0.2');}
if (!defined('INI_SCANNER_NORMAL')) {define('INI_SCANNER_NORMAL', 0);}
if (!defined('INI_SCANNER_RAW')) {define('INI_SCANNER_RAW', 1);}
if (!defined('PHP_VERSION')) {define('PHP_VERSION', '5.3.3.hiphop');}
4 changes: 2 additions & 2 deletions hphp/system/class_map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ const int64_t k_GRAPHEME_EXTR_MAXBYTES = 1;
const int64_t k_GRAPHEME_EXTR_MAXCHARS = 2;
const int64_t k_HASH_HMAC = 1;
extern const StaticString k_HPHP_TRIM_CHARLIST("\n\r\t\v\000 ",6);
extern const StaticString k_HPHP_VERSION("2.0.1",5);
extern const StaticString k_HPHP_VERSION("2.0.2",5);
const int64_t k_HTML_ENTITIES = 1;
const int64_t k_HTML_SPECIALCHARS = 0;
extern const StaticString k_ICONV_IMPL("glibc",5);
Expand Down Expand Up @@ -17963,7 +17963,7 @@ const char *g_class_map[] = {
"GRAPHEME_EXTR_MAXCHARS", (const char*)4, "i:2;",
"HASH_HMAC", (const char*)4, "i:1;",
"HPHP_TRIM_CHARLIST", (const char*)13, "s:6:\"\n\r\t\v\000 \";",
"HPHP_VERSION", (const char*)12, "s:5:\"2.0.1\";",
"HPHP_VERSION", (const char*)12, "s:5:\"2.0.2\";",
"HTML_ENTITIES", (const char*)4, "i:1;",
"HTML_SPECIALCHARS", (const char*)4, "i:0;",
"ICONV_IMPL", (const char*)12, "s:5:\"glibc\";",
Expand Down
2 changes: 1 addition & 1 deletion hphp/system/globals/constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@
define('GRAPHEME_EXTR_MAXCHARS', 2);
define('HASH_HMAC', 1);
define('HPHP_TRIM_CHARLIST', "\n\r\t\v\000 ");
define('HPHP_VERSION', "2.0.1");
define('HPHP_VERSION', "2.0.2");
define('HTML_ENTITIES', 1);
define('HTML_SPECIALCHARS', 0);
define('ICONV_IMPL', "glibc");
Expand Down
2 changes: 1 addition & 1 deletion hphp/system/globals/constdef.php
Original file line number Diff line number Diff line change
Expand Up @@ -2670,7 +2670,7 @@
DefineConstant(
array(
'name' => "HPHP_VERSION",
'value' => "2.0.1",
'value' => "2.0.2",
));

DefineConstant(
Expand Down
2 changes: 1 addition & 1 deletion hphp/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
HPHP_VERSION(2.0.1)
HPHP_VERSION(2.0.2)

0 comments on commit a3803ff

Please sign in to comment.