Skip to content

Commit

Permalink
Version bump -> 3.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo committed May 31, 2015
1 parent 4e07b1f commit ec39418
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/opensolutions/Bootstrap-Zend-Framework"
},
{
"type": "vcs",
"url": "https://github.com/opensolutions/Bootstrap-Zend-Framework"
},
{
"type": "package",
"package": {
Expand All @@ -43,7 +43,7 @@
],
"require": {
"php": ">=5.4.0",
"doctrine/orm": "2.*",
"doctrine/orm": "2.4.*",
"opensolutions/oss-framework": "dev-master",
"zendframework/zendframework1": "~1.12",
"smarty/smarty": "3.1.18",
Expand Down
6 changes: 3 additions & 3 deletions library/ViMbAdmin/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ final class ViMbAdmin_Version
/**
* Version identification - see compareVersion()
*/
const VERSION = '3.0.11';
const VERSION = '3.0.12';

/**
* Database schema version
Expand Down Expand Up @@ -88,12 +88,12 @@ public static function compareVersion( $version )
*/
public static function getLatest()
{
if( null === self::$_lastestVersion )
if( null === self::$_lastestVersion )
{
self::$_lastestVersion = 'not available';

$handle = fopen( 'http://www.opensolutions.ie/open-source/vimbadmin/latest-v3', 'r' );
if( $handle !== false )
if( $handle !== false )
{
self::$_lastestVersion = trim( stream_get_contents( $handle ) );
fclose( $handle );
Expand Down

0 comments on commit ec39418

Please sign in to comment.