Skip to content

Commit

Permalink
update version files for 3.9.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
weilai-irl committed Jun 30, 2021
1 parent a478759 commit 4fce5d4
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, 2020071504, 'auth', 'oidc');
}

if ($oldversion < 2020071505) {
if ($oldversion < 2020071506) {
// 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, 2020071505, 'auth', 'oidc');
upgrade_plugin_savepoint(true, 2020071506, '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 = 2020071505;
$plugin->version = 2020071506;
$plugin->requires = 2020061500;
$plugin->release = '3.9.5';
$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 = 2020071507;
$plugin->version = 2020071508;
$plugin->requires = 2020061500;
$plugin->release = '3.9.5';
$plugin->component = 'local_o365';
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = [
'auth_oidc' => 2020071505,
'auth_oidc' => 2020071506,
];
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 = 2020071506;
$plugin->version = 2020071507;
$plugin->requires = 2020061500;
$plugin->release = '3.9.5';
$plugin->component = 'local_office365';
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = [
'auth_oidc' => 2020071505,
'auth_oidc' => 2020071506,
'block_microsoft' => 2020071503,
'local_o365' => 2020071507,
'local_o365' => 2020071508,
'repository_office365' => 2020071504,
'filter_oembed' => 2019112600,
'theme_boost_o365teams' => 2020071502,
Expand Down

0 comments on commit 4fce5d4

Please sign in to comment.