Skip to content
Snippets Groups Projects
Commit 38f8efdb authored by Alexander Bias's avatar Alexander Bias
Browse files

Check compatibility for Moodle 3.5, no functionality change.

parent 209c91e1
Branches
Tags
No related merge requests found
......@@ -24,7 +24,7 @@ php:
env:
global:
- MOODLE_BRANCH=MOODLE_34_STABLE
- MOODLE_BRANCH=MOODLE_35_STABLE
matrix:
- DB=pgsql
- DB=mysqli
......
......@@ -4,6 +4,10 @@ moodle-auth_ldap_syncplus
Changes
-------
### Unreleased
* 2018-06-25 - Check compatibility for Moodle 3.5, no functionality change.
### v3.4-r4
* 2018-05-16 - Implement Privacy API.
......
......@@ -9,7 +9,7 @@ Moodle authentication plugin which provides all functionality of auth_ldap, but
Requirements
------------
This plugin requires Moodle 3.4+
This plugin requires Moodle 3.5+
Motivation for this plugin
......@@ -118,8 +118,8 @@ Theme support
-------------
This plugin acts behind the scenes, therefore it should work with all Moodle themes.
It has been developed on and tested with Moodle Core's Clean and Boost themes.
It has been developed on and tested only with Moodle Core's Boost theme.
While this plugin should also work with Moodle Core's legacy Clean theme or third party themes, we can't support any other theme than Boost.
Plugin repositories
-------------------
......
......@@ -27,6 +27,6 @@ defined('MOODLE_INTERNAL') || die();
$plugin->component = 'auth_ldap_syncplus';
$plugin->version = 2018051700;
$plugin->release = 'v3.4-r4';
$plugin->requires = 2017111300;
$plugin->requires = 2018051700;
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = array('auth_ldap' => 2017051500);
$plugin->dependencies = array('auth_ldap' => 2018051400);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment