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

Check compatibility for Moodle 3.6, no functionality change.

parent b0ecfeba
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ php: ...@@ -27,7 +27,7 @@ php:
env: env:
global: global:
- MOODLE_BRANCH=MOODLE_35_STABLE - MOODLE_BRANCH=MOODLE_36_STABLE
matrix: matrix:
- DB=pgsql - DB=pgsql
- DB=mysqli - DB=mysqli
......
...@@ -4,6 +4,10 @@ moodle-auth_ldap_syncplus ...@@ -4,6 +4,10 @@ moodle-auth_ldap_syncplus
Changes Changes
------- -------
### Unreleased
* 2019-01-29 - Check compatibility for Moodle 3.6, no functionality change.
### v3.5-r2 ### v3.5-r2
* 2019-01-29 - Adopt code changes Moodle 3.5 core auth_ldap (MDL-63887). * 2019-01-29 - Adopt code changes Moodle 3.5 core auth_ldap (MDL-63887).
......
...@@ -9,7 +9,7 @@ Moodle authentication plugin which provides all functionality of auth_ldap, but ...@@ -9,7 +9,7 @@ Moodle authentication plugin which provides all functionality of auth_ldap, but
Requirements Requirements
------------ ------------
This plugin requires Moodle 3.5+ This plugin requires Moodle 3.6+
Motivation for this plugin Motivation for this plugin
......
...@@ -27,6 +27,6 @@ defined('MOODLE_INTERNAL') || die(); ...@@ -27,6 +27,6 @@ defined('MOODLE_INTERNAL') || die();
$plugin->component = 'auth_ldap_syncplus'; $plugin->component = 'auth_ldap_syncplus';
$plugin->version = 2019012900; $plugin->version = 2019012900;
$plugin->release = 'v3.5-r2'; $plugin->release = 'v3.5-r2';
$plugin->requires = 2018051700; $plugin->requires = 2018120300;
$plugin->maturity = MATURITY_STABLE; $plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = array('auth_ldap' => 2018051400); $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