Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
fmido88 authored Mar 9, 2024
1 parent e3eaaff commit 2b0368b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# Wallet Enrollment for Moodle #
==========
## V 5.3.2 ##
- Adding main page for wallet (when the user click my wallet).
- Add bundles for quick top up with conditional discounts
- Fix conditional discount precision.
- Bug fixes.

## V 5.2.0 ##
- Add a page to display offers.
- Display conditional discouts available to users in the top up form.
- Display conditional discounts available to users in the top up form.
- Bug fixes.

## V 5.1.0 ##
Expand Down
2 changes: 1 addition & 1 deletion lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

// Disable all callbacks during upgrade.
$version = get_config('enrol_wallet', 'version');
if ($version >= 2024021018) {
if ($version >= 2024030900) {
global $CFG;
require_once("$CFG->dirroot/enrol/wallet/extendlib.php");
}
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@

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

$plugin->version = 2024022619;
$plugin->version = 2024030900;
$plugin->requires = 2020061500;
$plugin->component = 'enrol_wallet';
$plugin->release = '5.2.0';
$plugin->release = '5.3.2';
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = [
'enrol_manual' => ANY_VERSION,
Expand Down

0 comments on commit 2b0368b

Please sign in to comment.