Skip to content

Commit

Permalink
update version files for 3.10.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
weilai-irl committed Jun 30, 2021
1 parent 0b53332 commit fcdcb2d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions auth/oidc/db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function xmldb_auth_oidc_upgrade($oldversion) {
upgrade_plugin_savepoint(true, 2020110901, 'auth', 'oidc');
}

if ($oldversion < 2020110902) {
if ($oldversion < 2020110903) {
// Part 1: add index to auth_oidc_token table.
$table = new xmldb_table('auth_oidc_token');

Expand Down Expand Up @@ -260,7 +260,7 @@ function xmldb_auth_oidc_upgrade($oldversion) {
}

// Oidc savepoint reached.
upgrade_plugin_savepoint(true, 2020110902, 'auth', 'oidc');
upgrade_plugin_savepoint(true, 2020110903, 'auth', 'oidc');
}

return $result;
Expand Down
2 changes: 1 addition & 1 deletion auth/oidc/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2020110902;
$plugin->version = 2020110903;
$plugin->requires = 2020110900;
$plugin->release = '3.10.2';
$plugin->component = 'auth_oidc';
Expand Down
4 changes: 2 additions & 2 deletions local/o365/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2020110902;
$plugin->version = 2020110903;
$plugin->requires = 2020110900;
$plugin->release = '3.10.2';
$plugin->component = 'local_o365';
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = [
'auth_oidc' => 2020110902,
'auth_oidc' => 2020110903,
];
6 changes: 3 additions & 3 deletions local/office365/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2020110902;
$plugin->version = 2020110903;
$plugin->requires = 2020110900;
$plugin->release = '3.10.2';
$plugin->component = 'local_office365';
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = [
'auth_oidc' => 2020110902,
'auth_oidc' => 2020110903,
'block_microsoft' => 2020110901,
'local_o365' => 2020110902,
'local_o365' => 2020110903,
'repository_office365' => 2020110901,
'filter_oembed' => 2019112600,
'theme_boost_o365teams' => 2020110900,
Expand Down

0 comments on commit fcdcb2d

Please sign in to comment.