Skip to content

Commit

Permalink
version.php Updated - v-1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjitlawale committed Jun 18, 2020
1 parent f34552e commit 54ce100
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion db/install.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<XMLDB PATH="course/format/remuiformat/db" VERSION="20200514" COMMENT="XMLDB file for core Moodle tables"
<XMLDB PATH="course/format/remuiformat/db" VERSION="20200618" COMMENT="XMLDB file for core Moodle tables"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../lib/xmldb/xmldb.xsd"
>
Expand Down
4 changes: 2 additions & 2 deletions db/upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
function xmldb_format_remuiformat_upgrade($oldversion) {
global $DB;
$dbman = $DB->get_manager();
if ($oldversion < 2020051400) {
if ($oldversion < 2020061800) {
// Define table format_remuiformat to be created.
$table = new xmldb_table('format_remuiformat');

Expand All @@ -67,6 +67,6 @@ function xmldb_format_remuiformat_upgrade($oldversion) {
}

// Remuiformat savepoint reached.
upgrade_plugin_savepoint(true, 2020051400, 'format', 'remuiformat');
upgrade_plugin_savepoint(true, 2020061800, 'format', 'remuiformat');
}
}
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@

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

$plugin->version = 2020051400; // The current plugin version (Date: YYYYMMDDXX).
$plugin->release = '1.0.6';
$plugin->version = 2020061800; // The current plugin version (Date: YYYYMMDDXX).
$plugin->release = '1.0.7';
$plugin->requires = 2017111300; // Requires this Moodle version (Moodle V3.4.0).
$plugin->maturity = MATURITY_STABLE;
$plugin->component = 'format_remuiformat'; // Full name of the plugin (used for diagnostics).

0 comments on commit 54ce100

Please sign in to comment.