Skip to content

Commit

Permalink
Version bump and change version to a float (was string).
Browse files Browse the repository at this point in the history
  • Loading branch information
Damyon Wiese committed Jan 3, 2017
1 parent c4c207f commit f9d6559
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,23 +26,23 @@
defined('MOODLE_INTERNAL') || die();

// This is the version of the plugin.
$plugin->version = '2016120200.00';
$plugin->version = 2017010300;

// This is the version of Moodle this plugin requires.
$plugin->requires = '2016112900.00';
$plugin->requires = 2016112900.00;

// This is the component name of the plugin - it always starts with 'theme_'
// for themes and should be the same as the name of the folder.
$plugin->component = 'theme_photo';

// This is a list of plugins, this plugin depends on (and their versions).
$plugin->dependencies = [
'theme_boost' => '2016102100'
'theme_boost' => 2016102100
];

// This is a stable release.
$plugin->maturity = MATURITY_STABLE;

// This is the named version.
$plugin->release = '1.0.1';
$plugin->release = 1.2;

0 comments on commit f9d6559

Please sign in to comment.