Skip to content

Commit

Permalink
Set version and log level pending release
Browse files Browse the repository at this point in the history
  • Loading branch information
gav- committed Sep 28, 2022
1 parent c82035f commit c0e3802
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions RESTfm.php
Expand Up @@ -26,8 +26,8 @@
$startTimeUs = microtime(TRUE);

// Ensure E_STRICT is removed for PHP 5.4+
//error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED);
error_reporting(E_ALL & ~E_STRICT); // Dev. level reporting
error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED);
//error_reporting(E_ALL & ~E_STRICT); // Dev. level reporting

// x-debug's html error output makes CLI debugging with cURL a problem.
ini_set('html_errors', FALSE);
Expand Down
2 changes: 1 addition & 1 deletion lib/RESTfm/Version.php
Expand Up @@ -23,7 +23,7 @@
* Version static class to hold release version.
*/
class Version {
private static $_release = 'dev';
private static $_release = '6.0.2';
private static $_revision = '%%REVISION%%';
private static $_protocol = '6'; // Bump this when REST API changes.

Expand Down

0 comments on commit c0e3802

Please sign in to comment.